diff --git a/.gitignore b/.gitignore index ed3291f6..3909265b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ gurobi.log /data/transport_data.csv /data/switzerland* /data/.nfs* +/data/Industrial_Database.csv *.org @@ -43,3 +44,5 @@ gurobi.log config.yaml doc/_build + +*.xls \ No newline at end of file diff --git a/Snakefile b/Snakefile index 3e4b0425..ee0fb8cf 100644 --- a/Snakefile +++ b/Snakefile @@ -3,6 +3,7 @@ configfile: "config.yaml" wildcard_constraints: lv="[a-z0-9\.]+", + network="[a-zA-Z0-9]*", simpl="[a-zA-Z0-9]*", clusters="[0-9]+m?", sectors="[+a-zA-Z0-9]+", @@ -24,17 +25,12 @@ rule all: rule solve_all_networks: input: - expand(config['results_dir'] + config['run'] + "/postnetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc", + expand(config['results_dir'] + config['run'] + "/postnetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc", **config['scenario']) -rule test_script: - input: - expand("resources/heat_demand_urban_elec_s_{clusters}.nc", - **config['scenario']) - rule prepare_sector_networks: input: - expand(config['results_dir'] + config['run'] + "/prenetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc", + expand(config['results_dir'] + config['run'] + "/prenetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc", **config['scenario']) @@ -62,6 +58,18 @@ rule build_clustered_population_layouts: script: "scripts/build_clustered_population_layouts.py" +rule build_simplified_population_layouts: + input: + pop_layout_total="resources/pop_layout_total.nc", + pop_layout_urban="resources/pop_layout_urban.nc", + pop_layout_rural="resources/pop_layout_rural.nc", + regions_onshore=pypsaeur('resources/regions_onshore_{network}_s{simpl}.geojson') + output: + clustered_pop_layout="resources/pop_layout_{network}_s{simpl}.csv" + resources: mem_mb=10000 + script: "scripts/build_clustered_population_layouts.py" + + rule build_heat_demands: input: pop_layout_total="resources/pop_layout_total.nc", @@ -130,9 +138,9 @@ rule build_energy_totals: input: nuts3_shapes=pypsaeur('resources/nuts3_shapes.geojson') output: - energy_name='data/energy_totals.csv', - co2_name='data/co2_totals.csv', - transport_name='data/transport_data.csv' + energy_name='resources/energy_totals.csv', + co2_name='resources/co2_totals.csv', + transport_name='resources/transport_data.csv' threads: 1 resources: mem_mb=10000 script: 'scripts/build_energy_totals.py' @@ -141,13 +149,25 @@ rule build_biomass_potentials: input: jrc_potentials="data/biomass/JRC Biomass Potentials.xlsx" output: - biomass_potentials='data/biomass_potentials.csv' + biomass_potentials_all='resources/biomass_potentials_all.csv', + biomass_potentials='resources/biomass_potentials.csv' threads: 1 resources: mem_mb=1000 script: 'scripts/build_biomass_potentials.py' +rule build_ammonia_production: + input: + usgs="data/myb1-2017-nitro.xls" + output: + ammonia_production="resources/ammonia_production.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_ammonia_production.py' + rule build_industry_sector_ratios: + input: + ammonia_production="resources/ammonia_production.csv" output: industry_sector_ratios="resources/industry_sector_ratios.csv" threads: 1 @@ -155,43 +175,145 @@ rule build_industry_sector_ratios: script: 'scripts/build_industry_sector_ratios.py' -rule build_industrial_demand_per_country: +rule build_industrial_production_per_country: input: - industry_sector_ratios="resources/industry_sector_ratios.csv" + ammonia_production="resources/ammonia_production.csv" output: - industrial_demand_per_country="resources/industrial_demand_per_country.csv" + industrial_production_per_country="resources/industrial_production_per_country.csv" threads: 1 resources: mem_mb=1000 - script: 'scripts/build_industrial_demand_per_country.py' + script: 'scripts/build_industrial_production_per_country.py' + + +rule build_industrial_production_per_country_tomorrow: + input: + industrial_production_per_country="resources/industrial_production_per_country.csv" + output: + industrial_production_per_country_tomorrow="resources/industrial_production_per_country_tomorrow.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_production_per_country_tomorrow.py' + + + + +rule build_industrial_distribution_key: + input: + clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", + europe_shape=pypsaeur('resources/europe_shape.geojson'), + hotmaps_industrial_database="data/Industrial_Database.csv", + network=pypsaeur('networks/{network}_s{simpl}_{clusters}.nc') + output: + industrial_distribution_key="resources/industrial_distribution_key_{network}_s{simpl}_{clusters}.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_distribution_key.py' + + + +rule build_industrial_production_per_node: + input: + industrial_distribution_key="resources/industrial_distribution_key_{network}_s{simpl}_{clusters}.csv", + industrial_production_per_country_tomorrow="resources/industrial_production_per_country_tomorrow.csv" + output: + industrial_production_per_node="resources/industrial_production_{network}_s{simpl}_{clusters}.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_production_per_node.py' + + +rule build_industrial_energy_demand_per_node: + input: + industry_sector_ratios="resources/industry_sector_ratios.csv", + industrial_production_per_node="resources/industrial_production_{network}_s{simpl}_{clusters}.csv", + industrial_energy_demand_per_node_today="resources/industrial_energy_demand_today_{network}_s{simpl}_{clusters}.csv" + output: + industrial_energy_demand_per_node="resources/industrial_energy_demand_{network}_s{simpl}_{clusters}.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_energy_demand_per_node.py' + + +rule build_industrial_energy_demand_per_country_today: + input: + ammonia_production="resources/ammonia_production.csv", + industrial_production_per_country="resources/industrial_production_per_country.csv" + output: + industrial_energy_demand_per_country_today="resources/industrial_energy_demand_per_country_today.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_energy_demand_per_country_today.py' + + +rule build_industrial_energy_demand_per_node_today: + input: + industrial_distribution_key="resources/industrial_distribution_key_{network}_s{simpl}_{clusters}.csv", + industrial_energy_demand_per_country_today="resources/industrial_energy_demand_per_country_today.csv" + output: + industrial_energy_demand_per_node_today="resources/industrial_energy_demand_today_{network}_s{simpl}_{clusters}.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_energy_demand_per_node_today.py' + + + +rule build_industrial_energy_demand_per_country: + input: + industry_sector_ratios="resources/industry_sector_ratios.csv", + industrial_production_per_country="resources/industrial_production_per_country_tomorrow.csv" + output: + industrial_energy_demand_per_country="resources/industrial_energy_demand_per_country.csv" + threads: 1 + resources: mem_mb=1000 + script: 'scripts/build_industrial_energy_demand_per_country.py' rule build_industrial_demand: input: clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", - industrial_demand_per_country="resources/industrial_demand_per_country.csv" + industrial_demand_per_country="resources/industrial_energy_demand_per_country.csv" output: industrial_demand="resources/industrial_demand_{network}_s{simpl}_{clusters}.csv" threads: 1 resources: mem_mb=1000 script: 'scripts/build_industrial_demand.py' +rule build_retro_cost: + input: + building_stock="data/retro/data_building_stock.csv", + u_values_PL="data/retro/u_values_poland.csv", + tax_w="data/retro/electricity_taxes_eu.csv", + construction_index="data/retro/comparative_level_investment.csv", + average_surface="data/retro/average_surface_components.csv", + floor_area_missing="data/retro/floor_area_missing.csv", + clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", + cost_germany="data/retro/retro_cost_germany.csv", + window_assumptions="data/retro/window_assumptions.csv" + output: + retro_cost="resources/retro_cost_{network}_s{simpl}_{clusters}.csv", + floor_area="resources/floor_area_{network}_s{simpl}_{clusters}.csv" + script: "scripts/build_retro_cost.py" + rule prepare_sector_network: input: network=pypsaeur('networks/{network}_s{simpl}_{clusters}_ec_lv{lv}_{opts}.nc'), - energy_totals_name='data/energy_totals.csv', - co2_totals_name='data/co2_totals.csv', - transport_name='data/transport_data.csv', - biomass_potentials='data/biomass_potentials.csv', + energy_totals_name='resources/energy_totals.csv', + co2_totals_name='resources/co2_totals.csv', + transport_name='resources/transport_data.csv', + traffic_data = "data/emobility/", + biomass_potentials='resources/biomass_potentials.csv', timezone_mappings='data/timezone_mappings.csv', heat_profile="data/heat_load_profile_BDEW.csv", costs=config['costs_dir'] + "costs_{planning_horizons}.csv", - co2_budget="data/co2_budget.csv", + h2_cavern = "data/hydrogen_salt_cavern_potentials.csv", profile_offwind_ac=pypsaeur("resources/profile_offwind-ac.nc"), profile_offwind_dc=pypsaeur("resources/profile_offwind-dc.nc"), - clustermaps=pypsaeur('resources/clustermaps_{network}_s{simpl}_{clusters}.h5'), + busmap_s=pypsaeur("resources/busmap_{network}_s{simpl}.csv"), + busmap=pypsaeur("resources/busmap_{network}_s{simpl}_{clusters}.csv"), clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", - industrial_demand="resources/industrial_demand_{network}_s{simpl}_{clusters}.csv", + simplified_pop_layout="resources/pop_layout_{network}_s{simpl}.csv", + industrial_demand="resources/industrial_energy_demand_{network}_s{simpl}_{clusters}.csv", heat_demand_urban="resources/heat_demand_urban_{network}_s{simpl}_{clusters}.nc", heat_demand_rural="resources/heat_demand_rural_{network}_s{simpl}_{clusters}.nc", heat_demand_total="resources/heat_demand_total_{network}_s{simpl}_{clusters}.nc", @@ -209,21 +331,23 @@ rule prepare_sector_network: cop_air_urban="resources/cop_air_urban_{network}_s{simpl}_{clusters}.nc", solar_thermal_total="resources/solar_thermal_total_{network}_s{simpl}_{clusters}.nc", solar_thermal_urban="resources/solar_thermal_urban_{network}_s{simpl}_{clusters}.nc", - solar_thermal_rural="resources/solar_thermal_rural_{network}_s{simpl}_{clusters}.nc" - output: config['results_dir'] + config['run'] + '/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc' + solar_thermal_rural="resources/solar_thermal_rural_{network}_s{simpl}_{clusters}.nc", + retro_cost_energy = "resources/retro_cost_{network}_s{simpl}_{clusters}.csv", + floor_area = "resources/floor_area_{network}_s{simpl}_{clusters}.csv" + output: config['results_dir'] + config['run'] + '/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc' threads: 1 resources: mem_mb=2000 - benchmark: "benchmarks/prepare_network/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}" + benchmark: config['results_dir'] + config['run'] + "/benchmarks/prepare_network/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}" script: "scripts/prepare_sector_network.py" rule plot_network: input: - network=config['results_dir'] + config['run'] + "/postnetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc" + network=config['results_dir'] + config['run'] + "/postnetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc" output: - map=config['results_dir'] + config['run'] + "/maps/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}-costs-all_{co2_budget_name}_{planning_horizons}.pdf", - today=config['results_dir'] + config['run'] + "/maps/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}-today.pdf" + map=config['results_dir'] + config['run'] + "/maps/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf", + today=config['results_dir'] + config['run'] + "/maps/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}-today.pdf" threads: 2 resources: mem_mb=10000 script: "scripts/plot_network.py" @@ -240,11 +364,11 @@ rule copy_config: rule make_summary: input: - networks=expand(config['results_dir'] + config['run'] + "/postnetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc", + networks=expand(config['results_dir'] + config['run'] + "/postnetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc", **config['scenario']), costs=config['costs_dir'] + "costs_{}.csv".format(config['scenario']['planning_horizons'][0]), - #plots=expand(config['results_dir'] + config['run'] + "/maps/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}-costs-all_{co2_budget_name}_{planning_horizons}.pdf", - # **config['scenario']) + plots=expand(config['results_dir'] + config['run'] + "/maps/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf", + **config['scenario']) #heat_demand_name='data/heating/daily_heat_demand.h5' output: nodal_costs=config['summary_dir'] + '/' + config['run'] + '/csvs/nodal_costs.csv', @@ -276,7 +400,7 @@ rule plot_summary: output: costs=config['summary_dir'] + '/' + config['run'] + '/graphs/costs.pdf', energy=config['summary_dir'] + '/' + config['run'] + '/graphs/energy.pdf', - #balances=config['summary_dir'] + '/' + config['run'] + '/graphs/balances-energy.pdf' + balances=config['summary_dir'] + '/' + config['run'] + '/graphs/balances-energy.pdf' threads: 2 resources: mem_mb=10000 script: @@ -286,16 +410,16 @@ if config["foresight"] == "overnight": rule solve_network: input: - network=config['results_dir'] + config['run'] + "/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc", + network=config['results_dir'] + config['run'] + "/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc", costs=config['costs_dir'] + "costs_{planning_horizons}.csv", config=config['summary_dir'] + '/' + config['run'] + '/configs/config.yaml' - output: config['results_dir'] + config['run'] + "/postnetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc" + output: config['results_dir'] + config['run'] + "/postnetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc" shadow: "shallow" log: - solver="logs/" + config['run'] + "/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}_solver.log", - python="logs/" + config['run'] + "/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}_python.log", - memory="logs/" + config['run'] + "/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}_memory.log" - benchmark: "benchmarks/solve_network/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}" + solver=config['results_dir'] + config['run'] + "/logs/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}_solver.log", + python=config['results_dir'] + config['run'] + "/logs/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}_python.log", + memory=config['results_dir'] + config['run'] + "/logs/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}_memory.log" + benchmark: config['results_dir'] + config['run'] + "/benchmarks/solve_network/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}" threads: 4 resources: mem_mb=config['solving']['mem'] # group: "solve" # with group, threads is ignored https://bitbucket.org/snakemake/snakemake/issues/971/group-job-description-does-not-contain @@ -306,14 +430,15 @@ if config["foresight"] == "myopic": rule add_existing_baseyear: input: - network=config['results_dir'] + config['run'] + '/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc', + network=config['results_dir'] + config['run'] + '/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc', powerplants=pypsaeur('resources/powerplants.csv'), - clustermaps=pypsaeur('resources/clustermaps_{network}_s{simpl}_{clusters}.h5'), + busmap_s=pypsaeur("resources/busmap_{network}_s{simpl}.csv"), + busmap=pypsaeur("resources/busmap_{network}_s{simpl}_{clusters}.csv"), clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", costs=config['costs_dir'] + "costs_{}.csv".format(config['scenario']['planning_horizons'][0]), cop_soil_total="resources/cop_soil_total_{network}_s{simpl}_{clusters}.nc", cop_air_total="resources/cop_air_total_{network}_s{simpl}_{clusters}.nc" - output: config['results_dir'] + config['run'] + '/prenetworks-brownfield/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc' + output: config['results_dir'] + config['run'] + '/prenetworks-brownfield/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc' wildcard_constraints: planning_horizons=config['scenario']['planning_horizons'][0] #only applies to baseyear threads: 1 @@ -322,36 +447,36 @@ if config["foresight"] == "myopic": def process_input(wildcards): i = config["scenario"]["planning_horizons"].index(int(wildcards.planning_horizons)) - return config['results_dir'] + config['run'] + "/postnetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_" + str(config["scenario"]["planning_horizons"][i-1]) + ".nc" + return config['results_dir'] + config['run'] + "/postnetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_" + str(config["scenario"]["planning_horizons"][i-1]) + ".nc" rule add_brownfield: input: - network=config['results_dir'] + config['run'] + '/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc', + network=config['results_dir'] + config['run'] + '/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc', network_p=process_input, #solved network at previous time step costs=config['costs_dir'] + "costs_{planning_horizons}.csv", cop_soil_total="resources/cop_soil_total_{network}_s{simpl}_{clusters}.nc", cop_air_total="resources/cop_air_total_{network}_s{simpl}_{clusters}.nc" - output: config['results_dir'] + config['run'] + "/prenetworks-brownfield/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc" + output: config['results_dir'] + config['run'] + "/prenetworks-brownfield/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc" threads: 4 - resources: mem_mb=2000 + resources: mem_mb=10000 script: "scripts/add_brownfield.py" ruleorder: add_existing_baseyear > add_brownfield rule solve_network_myopic: input: - network=config['results_dir'] + config['run'] + "/prenetworks-brownfield/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc", + network=config['results_dir'] + config['run'] + "/prenetworks-brownfield/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc", costs=config['costs_dir'] + "costs_{planning_horizons}.csv", config=config['summary_dir'] + '/' + config['run'] + '/configs/config.yaml' - output: config['results_dir'] + config['run'] + "/postnetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}.nc" + output: config['results_dir'] + config['run'] + "/postnetworks/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc" shadow: "shallow" log: - solver="logs/" + config['run'] + "/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}_solver.log", - python="logs/" + config['run'] + "/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}_python.log", - memory="logs/" + config['run'] + "/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}_memory.log" - benchmark: "benchmarks/solve_network/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{co2_budget_name}_{planning_horizons}" + solver=config['results_dir'] + config['run'] + "/logs/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}_solver.log", + python=config['results_dir'] + config['run'] + "/logs/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}_python.log", + memory=config['results_dir'] + config['run'] + "/logs/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}_memory.log" + benchmark: config['results_dir'] + config['run'] + "/benchmarks/solve_network/{network}_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}" threads: 4 resources: mem_mb=config['solving']['mem'] script: "scripts/solve_network.py" diff --git a/config.default.yaml b/config.default.yaml index 8d4b1049..d43d0e29 100644 --- a/config.default.yaml +++ b/config.default.yaml @@ -1,11 +1,13 @@ +version: 0.4.0 + logging_level: INFO results_dir: 'results/' summary_dir: results costs_dir: '../technology-data/outputs/' run: 'your-run-name' # use this to keep track of runs with different settings -foresight: 'overnight' #options are overnight, myopic, perfect (perfect is not yet implemented) - +foresight: 'overnight' # options are overnight, myopic, perfect (perfect is not yet implemented) +# if you use myopic or perfect foresight, set the investment years in "planning_horizons" below scenario: sectors: [E] # ignore this legacy setting @@ -22,8 +24,19 @@ scenario: # B for biomass supply, I for industry, shipping and aviation # solarx or onwindx changes the available installable potential by factor x # dist{n} includes distribution grids with investment cost of n times cost in data/costs.csv - planning_horizons : [2030] #investment years for myopic and perfect; or costs year for overnight - co2_budget_name: ['go'] #gives shape of CO2 budgets over planning horizon + planning_horizons : [2030] # investment years for myopic and perfect; or costs year for overnight + # for example, set to [2020, 2030, 2040, 2050] for myopic foresight + +# CO2 budget as a fraction of 1990 emissions +# this is over-ridden if CO2Lx is set in sector_opts +co2_budget: + 2020: 0.7011648746 + 2025: 0.5241935484 + 2030: 0.2970430108 + 2035: 0.1500896057 + 2040: 0.0712365591 + 2045: 0.0322580645 + 2050: 0 # snapshots are originally set in PyPSA-Eur/config.yaml but used again by PyPSA-Eur-Sec snapshots: @@ -43,9 +56,22 @@ electricity: battery: 6 H2: 168 +# regulate what components with which carriers are kept from PyPSA-Eur; +# some technologies are removed because they are implemented differently +# or have different year-dependent costs in PyPSA-Eur-Sec +pypsa_eur: + "Bus": ["AC"] + "Link": ["DC"] + "Generator": ["onwind", "offwind-ac", "offwind-dc", "solar", "ror"] + "StorageUnit": ["PHS","hydro"] + biomass: year: 2030 scenario: "Med" + classes: + solid biomass: ['Primary agricultural residues', 'Forestry energy residue', 'Secondary forestry residues', 'Secondary Forestry residues – sawdust', 'Forestry residues from landscape care biomass', 'Municipal waste'] + not included: ['Bioethanol sugar beet biomass', 'Rapeseeds for biodiesel', 'sunflower and soya for Biodiesel', 'Starchy crops biomass', 'Grassy crops biomass', 'Willow biomass', 'Poplar biomass potential', 'Roundwood fuelwood', 'Roundwood Chips & Pellets'] + biogas: ['Manure biomass potential', 'Sludge biomass'] # only relevant for foresight = myopic or perfect existing_capacities: @@ -56,8 +82,8 @@ existing_capacities: sector: 'central' : True 'central_fraction' : 0.6 - 'dsm_restriction_value' : 0.75 #Set to 0 for no restriction on BEV DSM - 'dsm_restriction_time' : 7 #Time at which SOC of BEV has to be dsm_restriction_value + 'bev_dsm_restriction_value' : 0.75 #Set to 0 for no restriction on BEV DSM + 'bev_dsm_restriction_time' : 7 #Time at which SOC of BEV has to be dsm_restriction_value 'transport_heating_deadband_upper' : 20. 'transport_heating_deadband_lower' : 15. 'ICE_lower_degree_factor' : 0.375 #in per cent increase in fuel consumption per degree above deadband @@ -65,22 +91,46 @@ sector: 'EV_lower_degree_factor' : 0.98 'EV_upper_degree_factor' : 0.63 'district_heating_loss' : 0.15 - 'bev' : True #turns on EV battery + 'bev_dsm' : True #turns on EV battery 'bev_availability' : 0.5 #How many cars do smart charging 'v2g' : True #allows feed-in to grid from EV battery - 'transport_fuel_cell_share' : 0. #0 means all EVs, 1 means all FCs + #what is not EV or FCEV is fossil-fuelled + 'land_transport_fuel_cell_share': # 1 means all FCEVs + 2020: 0 + 2030: 0.05 + 2040: 0.1 + 2050: 0.15 + 'land_transport_electric_share': # 1 means all EVs + 2020: 0 + 2030: 0.25 + 2040: 0.6 + 2050: 0.85 + 'transport_fuel_cell_efficiency': 0.5 + 'transport_internal_combustion_efficiency': 0.3 'shipping_average_efficiency' : 0.4 #For conversion of fuel oil to propulsion in 2011 - 'time_dep_hp_cop' : True - 'space_heating_fraction' : 1.0 #fraction of space heating active - 'retrofitting' : False - 'retroI-fraction' : 0.25 - 'retroII-fraction' : 0.55 - 'retrofitting-cost_factor' : 1.0 + 'time_dep_hp_cop' : True #time dependent heat pump coefficient of performance + 'heat_pump_sink_T' : 55. # Celsius, based on DTU / large area radiators; used in build_cop_profiles.py + # conservatively high to cover hot water and space heating in poorly-insulated buildings + 'retrofitting' : + 'retro_exogen': True # space heat demand savings exogenously + 'dE': # reduction of space heat demand (applied before losses in DH) + 2020 : 0. + 2030 : 0.15 + 2040 : 0.3 + 2050 : 0.4 + 'retro_endogen': False # co-optimise space heat savings + 'cost_factor' : 1.0 + 'interest_rate': 0.04 # for investment in building components + 'annualise_cost': True # annualise the investment costs + 'tax_weighting': False # weight costs depending on taxes in countries + 'construction_index': True # weight costs depending on labour/material costs per ct + 'l_strength': ["0.076", "0.197"] # additional insulation thickness[m], determines number of retro steps(=generators per bus) and maximum possible savings 'tes' : True 'tes_tau' : 3. 'boilers' : True 'oil_boilers': False 'chp' : True + 'micro_chp' : False 'solar_thermal' : True 'solar_cf_correction': 0.788457 # = >>> 1/1.2683 'marginal_cost_storage' : 0. #1e-4 @@ -89,16 +139,19 @@ sector: 'dac' : True 'co2_vent' : True 'SMR' : True - 'ccs_fraction' : 0.9 + 'co2_sequestration_potential' : 200 #MtCO2/a sequestration potential for Europe + 'co2_sequestration_cost' : 20 #EUR/tCO2 for transport and sequestration of CO2 + 'cc_fraction' : 0.9 # default fraction of CO2 captured with post-combustion capture 'hydrogen_underground_storage' : True 'use_fischer_tropsch_waste_heat' : True 'use_fuel_cell_waste_heat' : True 'electricity_distribution_grid' : False 'electricity_distribution_grid_cost_factor' : 1.0 #multiplies cost in data/costs.csv 'electricity_grid_connection' : True # only applies to onshore wind and utility PV + 'gas_distribution_grid' : True + 'gas_distribution_grid_cost_factor' : 1.0 #multiplies cost in data/costs.csv costs: - year: 2030 lifetime: 25 #default lifetime # From a Lion Hirth paper, also reflects average of Noothout et al 2016 discountrate: 0.07 @@ -156,12 +209,17 @@ solving: mem: 30000 #memory in MB; 20 GB enough for 50+B+I+H2; 100 GB for 181+B+I+H2 industry: - 'DRI_ratio' : 0.5 #ratio of today's blast-furnace steel (60% primary route, 40% secondary) to future assumption (30% primary, 70% secondary), transformed into DRI + electric arc - 'H2_DRI' : 1.7 #H2 consumption in Direct Reduced Iron (DRI), MWh_H2/ton_Steel from Vogl et al (2018) doi:10.1016/j.jclepro.2018.08.279 - 'Al_to_scrap' : 0.5 # ratio of primary-route Aluminum transformed into scrap (today 40% to future 20% primary route) - 'H2_for_NH3' : 85000 # H2 in GWh/a for 17 MtNH3/a transformed from SMR to electrolyzed-H2, following Lechtenböhmer(2016) + 'St_primary_fraction' : 0.3 # fraction of steel produced via primary route (DRI + EAF) versus secondary route (EAF); today fraction is 0.6 + 'H2_DRI' : 1.7 #H2 consumption in Direct Reduced Iron (DRI), MWh_H2,LHV/ton_Steel from 51kgH2/tSt in Vogl et al (2018) doi:10.1016/j.jclepro.2018.08.279 + 'elec_DRI' : 0.322 #electricity consumption in Direct Reduced Iron (DRI) shaft, MWh/tSt HYBRIT brochure https://ssabwebsitecdn.azureedge.net/-/media/hybrit/files/hybrit_brochure.pdf + 'Al_primary_fraction' : 0.2 # fraction of aluminium produced via the primary route versus scrap; today fraction is 0.4 + 'MWh_CH4_per_tNH3_SMR' : 10.8 # 2012's demand from https://ec.europa.eu/docsroom/documents/4165/attachments/1/translations/en/renditions/pdf + 'MWh_elec_per_tNH3_SMR' : 0.7 # same source, assuming 94-6% split methane-elec of total energy demand 11.5 MWh/tNH3 + 'MWh_H2_per_tNH3_electrolysis' : 6.5 # from https://doi.org/10.1016/j.joule.2018.04.017, around 0.197 tH2/tHN3 (>3/17 since some H2 lost and used for energy) + 'MWh_elec_per_tNH3_electrolysis' : 1.17 # from https://doi.org/10.1016/j.joule.2018.04.017 Table 13 (air separation and HB) 'NH3_process_emissions' : 24.5 # in MtCO2/a from SMR for H2 production for NH3 from UNFCCC for 2015 for EU28 'petrochemical_process_emissions' : 25.5 # in MtCO2/a for petrochemical and other from UNFCCC for 2015 for EU28 + 'HVC_primary_fraction' : 1.0 #fraction of current non-ammonia basic chemicals produced via primary route plotting: map: @@ -258,7 +316,7 @@ plotting: "DAC" : "#E74C3C" "co2 stored" : "#123456" "CO2 sequestration" : "#123456" - "CCS" : "k" + "CC" : "k" "co2" : "#123456" "co2 vent" : "#654321" "solid biomass for industry co2 from atmosphere" : "#654321" @@ -268,6 +326,7 @@ plotting: "Fischer-Tropsch" : "#44DD33" "kerosene for aviation": "#44BB11" "naphtha for industry" : "#44FF55" + "land transport fossil" : "#44DD33" "water tanks" : "#BBBBBB" "hot water storage" : "#BBBBBB" "hot water charging" : "#BBBBBB" @@ -279,7 +338,6 @@ plotting: "Ambient" : "k" "Electric load" : "b" "Heat load" : "r" - "Transport load" : "grey" "heat" : "darkred" "rural heat" : "#880000" "central heat" : "#b22222" @@ -294,15 +352,16 @@ plotting: "building retrofitting" : "purple" "BEV charger" : "grey" "V2G" : "grey" - "transport" : "grey" + "land transport EV" : "grey" "electricity" : "k" "gas for industry" : "#333333" "solid biomass for industry" : "#555555" + "industry electricity" : "#222222" "industry new electricity" : "#222222" "process emissions to stored" : "#444444" "process emissions to atmosphere" : "#888888" "process emissions" : "#222222" - "transport fuel cell" : "#AAAAAA" + "land transport fuel cell" : "#AAAAAA" "biogas" : "#800000" "solid biomass" : "#DAA520" "today" : "#D2691E" diff --git a/config.myopic.yaml b/config.myopic.yaml deleted file mode 100644 index 565648ae..00000000 --- a/config.myopic.yaml +++ /dev/null @@ -1,328 +0,0 @@ -logging_level: INFO - -results_dir: 'results/' -summary_dir: results -costs_dir: '../technology-data/outputs/' -run: 'your-run-name' # use this to keep track of runs with different settings -foresight: 'myopic' #options are overnight, myopic, perfect (perfect is not yet implemented) - - -scenario: - sectors: [E] # ignore this legacy setting - simpl: [''] # only relevant for PyPSA-Eur - lv: [1.0,1.5] # allowed transmission line volume expansion, can be any float >= 1.0 (today) or "opt" - clusters: [45,50] # number of nodes in Europe, any integer between 37 (1 node per country-zone) and several hundred - opts: [''] # only relevant for PyPSA-Eur - sector_opts: [Co2L0-3H-H-B-solar3-dist1] # this is where the main scenario settings are - # to really understand the options here, look in scripts/prepare_sector_network.py - # Co2Lx specifies the CO2 target in x% of the 1990 values; default will give default (5%); - # Co2L0p25 will give 25% CO2 emissions; Co2Lm0p05 will give 5% negative emissions - # xH is the temporal resolution; 3H is 3-hourly, i.e. one snapshot every 3 hours - # single letters are sectors: T for land transport, H for building heating, - # B for biomass supply, I for industry, shipping and aviation - # solarx or onwindx changes the available installable potential by factor x - # dist{n} includes distribution grids with investment cost of n times cost in data/costs.csv - planning_horizons : [2020, 2030, 2040, 2050] #investment years for myopic and perfect; or costs year for overnight - co2_budget_name: ['go'] #gives shape of CO2 budgets over planning horizon - -# snapshots are originally set in PyPSA-Eur/config.yaml but used again by PyPSA-Eur-Sec -snapshots: - # arguments to pd.date_range - start: "2013-01-01" - end: "2014-01-01" - closed: 'left' # end is not inclusive - -atlite: - cutout_dir: '../pypsa-eur/cutouts' - cutout_name: "europe-2013-era5" - -# this information is NOT used but needed as an argument for -# pypsa-eur/scripts/add_electricity.py/load_costs in make_summary.py -electricity: - max_hours: - battery: 6 - H2: 168 - -biomass: - year: 2030 - scenario: "Med" - -# only relevant for foresight = myopic or perfect -existing_capacities: - grouping_years: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2019] - threshold_capacity: 10 - conventional_carriers: ['lignite', 'coal', 'oil', 'uranium'] - -sector: - 'central' : True - 'central_fraction' : 0.6 - 'dsm_restriction_value' : 0.75 #Set to 0 for no restriction on BEV DSM - 'dsm_restriction_time' : 7 #Time at which SOC of BEV has to be dsm_restriction_value - 'transport_heating_deadband_upper' : 20. - 'transport_heating_deadband_lower' : 15. - 'ICE_lower_degree_factor' : 0.375 #in per cent increase in fuel consumption per degree above deadband - 'ICE_upper_degree_factor' : 1.6 - 'EV_lower_degree_factor' : 0.98 - 'EV_upper_degree_factor' : 0.63 - 'district_heating_loss' : 0.15 - 'bev' : True #turns on EV battery - 'bev_availability' : 0.5 #How many cars do smart charging - 'v2g' : True #allows feed-in to grid from EV battery - 'transport_fuel_cell_share' : 0. #0 means all EVs, 1 means all FCs - 'shipping_average_efficiency' : 0.4 #For conversion of fuel oil to propulsion in 2011 - 'time_dep_hp_cop' : True - 'space_heating_fraction' : 1.0 #fraction of space heating active - 'retrofitting' : False - 'retroI-fraction' : 0.25 - 'retroII-fraction' : 0.55 - 'retrofitting-cost_factor' : 1.0 - 'tes' : True - 'tes_tau' : 3. - 'boilers' : True - 'oil_boilers': False - 'chp' : True - 'solar_thermal' : True - 'solar_cf_correction': 0.788457 # = >>> 1/1.2683 - 'marginal_cost_storage' : 0. #1e-4 - 'methanation' : True - 'helmeth' : True - 'dac' : True - 'co2_vent' : True - 'SMR' : True - 'ccs_fraction' : 0.9 - 'hydrogen_underground_storage' : True - 'use_fischer_tropsch_waste_heat' : True - 'use_fuel_cell_waste_heat' : True - 'electricity_distribution_grid' : False - 'electricity_distribution_grid_cost_factor' : 1.0 #multiplies cost in data/costs.csv - 'electricity_grid_connection' : True # only applies to onshore wind and utility PV - -costs: - year: 2030 - lifetime: 25 #default lifetime - # From a Lion Hirth paper, also reflects average of Noothout et al 2016 - discountrate: 0.07 - # [EUR/USD] ECB: https://www.ecb.europa.eu/stats/exchange/eurofxref/html/eurofxref-graph-usd.en.html # noqa: E501 - USD2013_to_EUR2013: 0.7532 - - # Marginal and capital costs can be overwritten - # capital_cost: - # Wind: Bla - marginal_cost: # - solar: 0.01 - onwind: 0.015 - offwind: 0.015 - hydro: 0. - H2: 0. - battery: 0. - - emission_prices: # only used with the option Ep (emission prices) - co2: 0. - - lines: - length_factor: 1.25 #to estimate offwind connection costs - - -solving: - #tmpdir: "path/to/tmp" - options: - formulation: kirchhoff - clip_p_max_pu: 1.e-2 - load_shedding: false - noisy_costs: true - - min_iterations: 1 - max_iterations: 1 - # nhours: 1 - - solver: - name: gurobi - threads: 4 - method: 2 # barrier - crossover: 0 - BarConvTol: 1.e-5 - Seed: 123 - AggFill: 0 - PreDual: 0 - GURO_PAR_BARDENSETHRESH: 200 - #FeasibilityTol: 1.e-6 - - #name: cplex - #threads: 4 - #lpmethod: 4 # barrier - #solutiontype: 2 # non basic solution, ie no crossover - #barrier_convergetol: 1.e-5 - #feasopt_tolerance: 1.e-6 - mem: 30000 #memory in MB; 20 GB enough for 50+B+I+H2; 100 GB for 181+B+I+H2 - -industry: - 'DRI_ratio' : 0.5 #ratio of today's blast-furnace steel (60% primary route, 40% secondary) to future assumption (30% primary, 70% secondary), transformed into DRI + electric arc - 'H2_DRI' : 1.7 #H2 consumption in Direct Reduced Iron (DRI), MWh_H2/ton_Steel from Vogl et al (2018) doi:10.1016/j.jclepro.2018.08.279 - 'Al_to_scrap' : 0.5 # ratio of primary-route Aluminum transformed into scrap (today 40% to future 20% primary route) - 'H2_for_NH3' : 85000 # H2 in GWh/a for 17 MtNH3/a transformed from SMR to electrolyzed-H2, following Lechtenböhmer(2016) - 'NH3_process_emissions' : 24.5 # in MtCO2/a from SMR for H2 production for NH3 from UNFCCC for 2015 for EU28 - 'petrochemical_process_emissions' : 25.5 # in MtCO2/a for petrochemical and other from UNFCCC for 2015 for EU28 - -plotting: - map: - figsize: [7, 7] - boundaries: [-10.2, 29, 35, 72] - p_nom: - bus_size_factor: 5.e+4 - linewidth_factor: 3.e+3 # 1.e+3 #3.e+3 - - costs_max: 1200 - costs_threshold: 1 - - - energy_max: 20000. - energy_min: -15000. - energy_threshold: 50. - - - vre_techs: ["onwind", "offwind-ac", "offwind-dc", "solar", "ror"] - renewable_storage_techs: ["PHS","hydro"] - conv_techs: ["OCGT", "CCGT", "Nuclear", "Coal"] - storage_techs: ["hydro+PHS", "battery", "H2"] - # store_techs: ["Li ion", "water tanks"] - load_carriers: ["AC load"] #, "heat load", "Li ion load"] - AC_carriers: ["AC line", "AC transformer"] - link_carriers: ["DC line", "Converter AC-DC"] - heat_links: ["heat pump", "resistive heater", "CHP heat", "CHP electric", - "gas boiler", "central heat pump", "central resistive heater", "central CHP heat", - "central CHP electric", "central gas boiler"] - heat_generators: ["gas boiler", "central gas boiler", "solar thermal collector", "central solar thermal collector"] - tech_colors: - "onwind" : "b" - "onshore wind" : "b" - 'offwind' : "c" - 'offshore wind' : "c" - 'offwind-ac' : "c" - 'offshore wind (AC)' : "c" - 'offwind-dc' : "#009999" - 'offshore wind (DC)' : "#009999" - 'wave' : "#004444" - "hydro" : "#3B5323" - "hydro reservoir" : "#3B5323" - "ror" : "#78AB46" - "run of river" : "#78AB46" - 'hydroelectricity' : '#006400' - 'solar' : "y" - 'solar PV' : "y" - 'solar thermal' : 'coral' - 'solar rooftop' : '#e6b800' - "OCGT" : "wheat" - "OCGT marginal" : "sandybrown" - "OCGT-heat" : "orange" - "gas boiler" : "orange" - "gas boilers" : "orange" - "gas boiler marginal" : "orange" - "gas-to-power/heat" : "orange" - "gas" : "brown" - "natural gas" : "brown" - "SMR" : "#4F4F2F" - "oil" : "#B5A642" - "oil boiler" : "#B5A677" - "lines" : "k" - "transmission lines" : "k" - "H2" : "m" - "hydrogen storage" : "m" - "battery" : "slategray" - "battery storage" : "slategray" - "home battery" : "#614700" - "home battery storage" : "#614700" - "Nuclear" : "r" - "Nuclear marginal" : "r" - "nuclear" : "r" - "uranium" : "r" - "Coal" : "k" - "coal" : "k" - "Coal marginal" : "k" - "Lignite" : "grey" - "lignite" : "grey" - "Lignite marginal" : "grey" - "CCGT" : "orange" - "CCGT marginal" : "orange" - "heat pumps" : "#76EE00" - "heat pump" : "#76EE00" - "air heat pump" : "#76EE00" - "ground heat pump" : "#40AA00" - "power-to-heat" : "#40AA00" - "resistive heater" : "pink" - "Sabatier" : "#FF1493" - "methanation" : "#FF1493" - "power-to-gas" : "#FF1493" - "power-to-liquid" : "#FFAAE9" - "helmeth" : "#7D0552" - "helmeth" : "#7D0552" - "DAC" : "#E74C3C" - "co2 stored" : "#123456" - "CO2 sequestration" : "#123456" - "CCS" : "k" - "co2" : "#123456" - "co2 vent" : "#654321" - "solid biomass for industry co2 from atmosphere" : "#654321" - "solid biomass for industry co2 to stored": "#654321" - "gas for industry co2 to atmosphere": "#654321" - "gas for industry co2 to stored": "#654321" - "Fischer-Tropsch" : "#44DD33" - "kerosene for aviation": "#44BB11" - "naphtha for industry" : "#44FF55" - "water tanks" : "#BBBBBB" - "hot water storage" : "#BBBBBB" - "hot water charging" : "#BBBBBB" - "hot water discharging" : "#999999" - "CHP" : "r" - "CHP heat" : "r" - "CHP electric" : "r" - "PHS" : "g" - "Ambient" : "k" - "Electric load" : "b" - "Heat load" : "r" - "Transport load" : "grey" - "heat" : "darkred" - "rural heat" : "#880000" - "central heat" : "#b22222" - "decentral heat" : "#800000" - "low-temperature heat for industry" : "#991111" - "process heat" : "#FF3333" - "heat demand" : "darkred" - "electric demand" : "k" - "Li ion" : "grey" - "district heating" : "#CC4E5C" - "retrofitting" : "purple" - "building retrofitting" : "purple" - "BEV charger" : "grey" - "V2G" : "grey" - "transport" : "grey" - "electricity" : "k" - "gas for industry" : "#333333" - "solid biomass for industry" : "#555555" - "industry new electricity" : "#222222" - "process emissions to stored" : "#444444" - "process emissions to atmosphere" : "#888888" - "process emissions" : "#222222" - "transport fuel cell" : "#AAAAAA" - "biogas" : "#800000" - "solid biomass" : "#DAA520" - "today" : "#D2691E" - "shipping" : "#6495ED" - "electricity distribution grid" : "#333333" - nice_names: - # OCGT: "Gas" - # OCGT marginal: "Gas (marginal)" - offwind: "offshore wind" - onwind: "onshore wind" - battery: "Battery storage" - lines: "Transmission lines" - AC line: "AC lines" - AC-AC: "DC lines" - ror: "Run of river" - nice_names_n: - offwind: "offshore\nwind" - onwind: "onshore\nwind" - # OCGT: "Gas" - H2: "Hydrogen\nstorage" - # OCGT marginal: "Gas (marginal)" - lines: "transmission\nlines" - ror: "run of river" diff --git a/data/Country_codes.csv b/data/Country_codes.csv old mode 100755 new mode 100644 diff --git a/data/co2_budget.csv b/data/co2_budget.csv deleted file mode 100755 index 8e66a993..00000000 --- a/data/co2_budget.csv +++ /dev/null @@ -1,8 +0,0 @@ -,go,wait -2020,0.7011648746,0.7011648746 -2025,0.5241935484,0.6285842294 -2030,0.2970430108,0.3503584229 -2035,0.1500896057,0.0725806452 -2040,0.0712365591,0 -2045,0.0322580645,0 -2050,0,0 diff --git a/data/existing_infrastructure/existing_heating_raw.csv b/data/existing_infrastructure/existing_heating_raw.csv old mode 100755 new mode 100644 diff --git a/data/existing_infrastructure/offwind_capacity_IRENA.csv b/data/existing_infrastructure/offwind_capacity_IRENA.csv old mode 100755 new mode 100644 diff --git a/data/existing_infrastructure/onwind_capacity_IRENA.csv b/data/existing_infrastructure/onwind_capacity_IRENA.csv old mode 100755 new mode 100644 diff --git a/data/existing_infrastructure/solar_capacity_IRENA.csv b/data/existing_infrastructure/solar_capacity_IRENA.csv old mode 100755 new mode 100644 diff --git a/data/hydrogen_salt_cavern_potentials.csv b/data/hydrogen_salt_cavern_potentials.csv new file mode 100644 index 00000000..c1168266 --- /dev/null +++ b/data/hydrogen_salt_cavern_potentials.csv @@ -0,0 +1,31 @@ +ct,TWh +AT, +BA, +BE, +BG, +CH, +CZ, +DE,4500 +DK,700 +EE, +ES,350 +FI, +FR, +GB,1050 +GR,120 +HR, +HU, +IE, +IT, +LT, +LU, +LV, +NL,150 +NO, +PL,120 +PT,400 +RO, +RS, +SE, +SI, +SK, diff --git a/data/retro/average_surface_components.csv b/data/retro/average_surface_components.csv new file mode 100644 index 00000000..de72edde --- /dev/null +++ b/data/retro/average_surface_components.csv @@ -0,0 +1,7 @@ +,Dwelling,Ceilling,Standard component surfaces (m2),component,surfaces,(m2),, +Building type,Space(m²),Height(m),Roof,Facade,Floor,Windows,, +Single/two family house,120,2.5,90,166,63,29,, +Large apartment house,1457,2.5,354,1189,354,380,, +Apartment house,5276,,598.337,2992.1,598.337,756,tabula ,http://webtool.building-typology.eu/#pdfes +,,,,,,,, +"Source: https://link.springer.com/article/10.1007/s12053-010-9090-6 ,p.4",,,,,,,, diff --git a/data/retro/comparative_level_investment.csv b/data/retro/comparative_level_investment.csv new file mode 100644 index 00000000..756d31ae --- /dev/null +++ b/data/retro/comparative_level_investment.csv @@ -0,0 +1,49 @@ +NA_ITEM,Price level indices (EU28=100),,,,,,,,, +PPP_CAT,Actual individual consumption,,,,,,,,, +,,,,,,,,,, +GEO/TIME,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018 +European Union - 28 countries,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0 +Belgium,113.6,111.9,112.4,111.5,111.0,108.9,106.3,110.3,112.3,112.5 +Bulgaria,47.1,45.7,45.5,45.0,44.2,42.6,42.2,43.2,45.1,46.3 +Czech Republic,64.5,66.6,68.9,66.9,63.3,58.3,58.4,60.5,62.4,65.0 +Denmark,141.7,140.0,139.9,140.0,139.3,138.5,135.0,140.0,138.9,138.1 +Germany,104.6,103.1,102.2,101.1,102.5,101.5,100.4,102.6,103.7,104.1 +Estonia,67.5,66.0,67.2,67.6,69.9,69.9,68.9,71.0,73.9,76.3 +Ireland,129.9,122.7,122.5,120.5,123.2,124.9,122.2,126.5,129.1,129.2 +Greece,93.6,95.4,94.9,91.9,87.8,83.8,81.0,82.3,83.0,81.8 +Spain,97.5,98.7,98.5,95.8,95.1,92.7,90.0,92.7,93.7,93.7 +France,111.2,109.9,109.6,108.7,107.0,106.0,104.0,105.8,107.1,107.4 +Croatia,70.2,70.1,68.1,65.5,64.5,62.5,60.7,61.3,63.0,64.0 +Italy,103.6,100.4,101.5,101.1,102.3,102.6,100.3,101.1,101.6,101.4 +Cyprus,92.0,94.6,95.8,96.0,95.2,92.0,88.5,89.8,91.2,90.6 +Latvia,68.1,62.3,65.5,65.9,66.0,66.0,64.2,66.9,68.3,69.5 +Lithuania,60.3,57.8,58.3,58.0,57.8,56.9,55.9,58.3,60.0,61.4 +Luxembourg,130.0,136.5,136.0,135.8,135.1,135.7,132.1,137.0,139.9,141.6 +Hungary,58.2,57.4,56.4,54.9,54.4,53.4,53.3,56.2,59.4,59.0 +Malta,75.8,76.6,78.0,78.0,80.8,80.5,79.8,81.4,81.9,83.4 +Netherlands,108.5,112.3,112.7,111.3,111.9,111.9,109.6,113.8,114.6,114.8 +Austria,109.9,109.2,110.1,108.9,109.1,109.1,107.2,110.2,112.8,113.7 +Poland,53.1,55.2,53.7,52.1,52.4,52.5,51.1,50.9,53.5,54.3 +Portugal,85.2,85.0,85.3,82.7,81.1,80.4,78.7,81.6,83.5,84.6 +Romania,49.1,46.9,47.7,45.6,47.8,47.6,47.2,46.8,48.0,48.6 +Slovenia,85.3,84.3,83.7,81.8,82.1,81.5,79.8,82.3,82.7,83.8 +Slovakia,66.6,62.5,63.4,63.4,63.4,63.3,62.3,63.6,65.4,66.1 +Finland,121.0,120.3,121.6,121.8,124.0,122.9,119.6,122.8,123.3,123.4 +Sweden,109.5,124.6,131.7,134.3,140.5,133.6,128.8,135.3,134.5,126.9 +United Kingdom,107.5,111.4,111.3,118.6,117.0,123.6,134.7,123.5,117.6,117.7 +Iceland,94.9,107.6,109.6,111.6,116.0,123.4,132.5,154.5,172.3,163.7 +Norway,142.4,158.8,165.3,172.5,166.9,157.2,152.2,155.0,157.3,155.4 +Switzerland,131.6,146.4,161.7,160.6,155.1,153.0,167.0,169.8,167.1,159.1 +Candidate and potential candidate countries except Turkey and Kosovo (under United Nations Security Council Resolution 1244/99),48.0,45.6,47.1,44.8,46.4,45.2,43.4,44.4,46.0,47.5 +Montenegro,52.3,49.5,49.3,50.1,50.5,49.3,48.0,48.7,50.5,51.1 +North Macedonia,41.4,41.3,42.7,42.1,42.5,41.9,40.9,41.7,43.2,43.3 +Albania,46.2,42.8,42.1,40.6,41.9,41.5,39.8,43.0,43.5,46.6 +Serbia,48.3,45.0,48.0,44.5,47.3,45.5,43.1,43.8,46.1,47.9 +Turkey,55.4,61.2,54.7,58.5,57.7,51.6,50.5,50.2,45.4,37.0 +Bosnia and Herzegovina,51.6,50.7,50.6,49.2,49.1,48.4,47.0,47.5,48.2,48.9 +Kosovo (under United Nations Security Council Resolution 1244/99),:,:,:,:,:,:,:,:,:,: +United States,92.4,98,93.3,101.2,100.3,99,115.9,121.1,120.8,115.2 +Japan,115.1,126.1,127.8,133.8,101.7,94.8,96.5,113,109.4,103.9 +,,,,,,,,,, +"Source: Eurostat Purchasing power parities (PPPs), price level indices and real expenditures for ESA 2010 aggregates (2019)",,,,,,,,,, +https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Comparative_price_levels_for_investment,,,,,,,,,, diff --git a/data/retro/data_building_stock.csv b/data/retro/data_building_stock.csv new file mode 100644 index 00000000..19c282ff --- /dev/null +++ b/data/retro/data_building_stock.csv @@ -0,0 +1,63129 @@ +country,country_code,sector,subsector,btype,bage,topic,feature,type,detail,estimated,value,unit,source,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Area,Constructed area [Mm²],,0,347.3519528,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.46,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Area,Number of buildings [Mil.],,0,3.62,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.55112,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.21312,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.69576,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,2.70551867219917,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Residential sector,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,1.75448132780083,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,78.7339048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,72.7633749025877,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.65042173,Mm²,,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.01094354753833,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.82054162378672,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.578259709191927,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.274976644930427,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.15770719341598,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.19177777267488,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.165866876627042,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.048006847537418,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.41181071388774,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.00565170698863,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.01773285020661,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.12927992881664,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.716823393217505,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.283176606782495,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.716823393217505,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.283176606782495,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.811177838597432,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.188765526081211,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.811177838597432,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.188765526081211,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.039290677804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.9284567078817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.1332046086735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.269774091055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.72783764033989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.6998069130103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.9872168184701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031577856650691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.1770821449881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006152504247529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,92.2876096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,85.2892785293236,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.869957,Mm²,,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.18497315330481,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.961794353130811,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.677804643690352,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.322312697698909,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.184855811915551,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.33236884966273,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.184276429085806,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.045019374521009,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.63875979468429,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.792142517211758,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.39904738501321,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.733996742288577,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.266003257711423,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.811959537415519,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.656033947161635,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.188040462584481,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,155.203296083707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.115812186455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.6998975274906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,206.094456869554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.85968807169735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.0498462912359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.9629459909294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.097454327808747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.1663007991627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016567235727487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,53.3176096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,49.2744418823059,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.192316,Mm²,,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.684598249409928,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.555660462525547,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.391590198662479,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.186210723839501,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.106797326907949,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.744220889152858,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.102359114132714,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.020870116483189,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.3227924516706,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.48033972175677,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.791867236298606,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.698951932008595,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.733225009397271,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.266774990602729,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.842007080527481,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.157992919472519,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.554391035565105,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.445608964434895,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.108782071130211,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.891217928869789,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.108782071130211,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.891217928869789,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.842007080527481,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.733225009397271,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.216217918441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.7013187684759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3269363291449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.816315773898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.3892241906409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.4904044937173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.28041985219884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.037797989588754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.1637367676326,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006425658230088,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,42.7676096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,39.5244668598262,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.994923,Mm²,,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.549136221283395,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.445711462117912,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.314105918574102,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.149365052189083,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.08566525052021,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.54418735150902,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.074592271079171,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013358267913261,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.880181947788824,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,1.95751788381458,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.516303379649257,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.518046800726501,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.774974451693461,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.225025548306539,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.864383348654586,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,0.135616651345414,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.88748722584673,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.112512774153269,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.135616651345414,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.864383348654586,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.842782777366168,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.159155350813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.5673483183947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.1252170940666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.215142390345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.5564492141271,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1878256410998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.60344769588186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038371541890982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.5742253324606,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006523162121467,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,49.0476096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,45.3182434608852,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.118445,Mm²,,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.629771438026014,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.511159777052504,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.36022926255088,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.171297831143076,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.098244344332058,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.633441260091875,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.087308945060945,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019156108922983,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.29466213007861,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.286233893363888,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.374045049322852,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.194301008300311,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.805698991699689,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.194301008300311,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.805698991699689,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.194301008300311,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.147466462712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.0545832224926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.4765852200075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.281120715835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.59927914782374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.7148778300113,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.76196730998626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030259063332281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.80727897640589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005144040766488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,24.0038048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,22.1835542411829,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.581107,Mm²,,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.308208917626675,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.250160601302369,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.176295500882458,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.083832825594456,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.048080591149761,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.350205820879951,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.048612023465044,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013148456206226,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.21825860940179,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.35287413768671,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.187138746270758,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.22489426476256,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.805030909099878,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.194969090900123,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.402515454549939,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.597484545450061,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.194969090900123,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.805030909099878,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.8966457795615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.7593352306621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9421480994754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.01325593068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.56908698921256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4132221492131,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.55982851442972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019036679017884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.47744733625505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00323623543304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,7.1938048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,6.64828598261565,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.290294,Mm²,,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.092368472810843,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.074971720084137,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.052834766447802,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.025124224604549,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014409481758492,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.110809359311783,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.015484340549278,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004929525132823,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.342360499967972,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.03832403347947,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.159255999829186,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.370186000042703,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.620937393241474,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.379062606758526,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.620937393241474,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.379062606758526,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.758125213517053,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.5017042090323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.3782320542071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.4088664986393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.242413019174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.9742994492152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.1132997479589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.66152537668482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006786560495944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.902468768740111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00115371528431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.04,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,2.89204818708415,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.16688,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.55488,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.31824,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.79,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,44.5912,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,41.2097712059147,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.91449876,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.744493996161714,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.58,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.4258505658045,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.202502366955986,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.116141063401227,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.65325698682817,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.087850291547082,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003386717786461,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.34428571428571,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.1075,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,173.253101165777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.1833588695606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,230.062793038035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.62117100782531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.89946416448435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024859147978848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.6204503211824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004226055156404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,60.5438048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,55.9526620441603,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.175535,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.957415461264913,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.71,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.54764164384353,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.260417005464056,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.149356811957327,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.840085135129507,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.11297502442926,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004355301706146,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.615,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.784770097941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.4096765463769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.424596213056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.6096450128841,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.8671693322551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073364759118945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.6080427923856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012472009050221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,39.0938048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,36.129253112199,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.80099,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.596152418982618,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.48,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.340999183658057,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.162153457963272,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.092999777361288,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.523094524499454,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.070345985439949,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002711909043215,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.203142677489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7328398917771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,216.717453161438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.0745827816021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.56248670358545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.028621647424915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.82895829872689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004865680062235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,33.1438048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,30.6304520331702,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.698055,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.467351965743892,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.4,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.267325324405506,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.127119734682339,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.072906906656047,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.41007844053018,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.055147531957779,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002125993255933,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,131.378274131244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.4404219504998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.457210218879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.21487173158497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.58887905864907,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029625748744656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.19075791145704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005036377286592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,34.4438048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,31.8218707563193,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.720545,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.493287414601506,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.41,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.282160401152062,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.13417417677161,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.076952836677835,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.432835525557204,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.058207914922978,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002243974121325,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.630426023327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.0996988950923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.529342716376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.11694881216569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.36189457967821,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021688187540364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.89315712674365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003686991881862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,14.5438048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,13.4409226096513,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.376275,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.23317602223997,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.133376684721263,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.063423878049272,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.036375459469435,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.204600529318405,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.027514770624317,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001060722297249,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.195,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.215,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.864439958265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.557084969134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.23318982058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55470444475278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.69759449213451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014508067146761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.29688157299504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002466371414949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.6638048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.38597206514137,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.188051,Mm²,,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.06262625438525,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0499,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035822217508363,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017034341192788,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009769695684099,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.054951468308626,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00738989801746,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000284888059164,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.335,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.3803436105341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.5977861363467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.0379694811418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,122.671858280428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.69162364317894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5569542217128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.375221057200691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005189791280726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.508999176867403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000882264517723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.13,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.727951812915846,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.64636,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.30736,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.17628,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.91551867219917,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.21448132780083,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,15.9589,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,14.748708662204,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.29667597,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.266449551376621,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.152409143387427,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.072474277974441,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.041566130014753,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.215875698658751,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.031441047062441,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019132805655429,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.015,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.568274497623,kWh/m²/year,S.Pezzutto. Analysis of the space heatingand cooling market in Europe. PhD Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,16.316154984948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.528311705394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.64158549206309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.87651358481147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00484061110683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.55188791854591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000783694938196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,14.39,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,13.2987810970127,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.269534,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.227557692039898,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.064,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.130162999846822,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.061895692234852,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.035498999958224,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.18436576642927,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.026851807660708,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01634011794992,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,120.919157027657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.2777114577783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.568548617026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.4923614850143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.9227814109654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012473416680061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.6074219959518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002019446160502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,5.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,5.36017584174243,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.120927,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.088445830427311,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.024,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050591015004422,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024057265876229,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013797549546661,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.0716582382605,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.010436607990423,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006350984176389,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.919805344838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.6116145049923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.618309517411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.49892038835825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.72675370513824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002613427707245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.986886074790307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000423113945803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.36017584174243,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.106049,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.081784255539502,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046780594168595,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022245317506745,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012758343864162,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.066261073485241,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.009650542153661,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0058726399006,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,93.4419823551684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.7228841286872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.081608369428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.32643494043446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.627709324741018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002833935138963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.855365042060837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000458814098998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,9.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,8.80732340893196,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.185456,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.136484023424507,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.048,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.078068861398818,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.037123654371466,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.021291507654223,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.110578470709739,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.016105114764092,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009800437950676,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.6235457136274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.491125968867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.387906353126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.31751329435957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.927302562306856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003800202257682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.26723374100381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000615252745519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.68,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.325107403337,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.101551,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.075032895386705,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.042918816161195,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020408947545184,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011705131680326,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.060791165270527,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.008853881655631,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005387848460547,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.136146465018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.9554262272315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.084888890897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.20218350618878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.444622212899201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002635799488802,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.608028250848552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000426735937237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.74,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.60805275252273,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.050689,Mm²,,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.029742218425593,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017012548939439,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008089883411761,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004639786074392,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.024096952496687,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00350958177422,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002135684154686,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.6596676942152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,17.0529145703455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.5173727311484,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.76086686893893,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.14524542261283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000864395186656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.199420345608748,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00013994558072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.29,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.73788,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.35088,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.20124,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,1.05448132780083,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.23551867219917,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,18.1838048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.804895034469,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.439247,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.394707949301002,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.225772947000173,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.107360562209872,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.061574440090956,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.322645087187956,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.046575538017518,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.025487324095528,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.918909198927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.9677338064936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.305519525255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.26137610327131,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.21123906917424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006135285171301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.00474390525978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000993302669234,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,17.3538048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,16.0378353881507,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.424888,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.376691499964731,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.215467537979826,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.102460087990407,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.058763873994498,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.30791794810395,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.044449596995838,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.024323954864943,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.827679446742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.0436956579151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.495975537328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.40697432701645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.17299524770889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0089412137607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.95083601082527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001447582507857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.4238048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,7.78501292836447,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.270399,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.182851870358833,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.104591269845253,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.049735708737603,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.028524891775978,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.149468126392905,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.021576520702342,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011807223263586,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.654796201311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.9385562798189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.643203875721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.22805226170268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.991179443475154,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005391365679507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.34789239411544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000872862103512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.8238048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.53383898491358,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.190819,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.083001669218058,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.047476954792729,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022576454027312,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012948260398017,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.067847837493599,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.009794196967731,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005359634756728,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.8086936557321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.9623404115543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.945364305447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.71760291263065,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.386859312491774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004381650834992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.528102378942729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000709389270185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.0738048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.68904929563393,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.212444,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.11013487604979,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.06299714910048,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029956686285543,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.017181040663767,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.090027263824932,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.012995915373875,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007111696850983,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.1356983920623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.7106236374898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.42849389482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.0292499669096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.472655338405586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003974959728043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.646735626438431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00064354597997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.41752422819463,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.103281,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.103757382924545,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.019,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.05934922303284,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028222008155476,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016186151736229,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.084814126291019,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.012243371185096,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006699885448431,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.8711373214904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.7804552433126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.1097832492071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.5262557038923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.417611809396016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002249507197985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.572537512411453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000364195215354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.65426116495154,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.051554,Mm²,,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.038854752183041,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0222249182487,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010568492593787,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006061341340554,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.031760938506469,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.004584860757599,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002508952918973,1e6 dimensionless,Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,61.605904141485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,20.890204077624,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8696324683313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.8064801094779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.38212404016732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.804448702497,kWh/m²/year,S. Pezzutto, A. Toleikytė, M. De Felice. Assessment of the Space Heating and Cooling Market in the EU28: A Comparison between EU15 and EU13 Member States. http://contemporary-energy.net/Articles/v01n02a05_-Simon-Pezzutto-et-al.pdf,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.141058896871299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001076973581018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.19404924626396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000174362022767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.265,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,13.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.54,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.137968,Mm²,,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.095167109182671,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.030060907666658,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.067209915420519,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027957193762152,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.013449945636841,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.72128302429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,77.5061814118913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.26082728953713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.446029440849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.6039561036104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.47126038111862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.96305777364922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.175705735660818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.46670010418944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.116051670822924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,34.59,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,34.59,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.34492,Mm²,,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.24413652947771,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.0767951843567,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.17027142059582,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.073865108881891,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.029257121953359,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.644894478172882,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.91061000289101,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.820848805938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.723340979009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.38338339342025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.792477983542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.3029382265658,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.63871872915706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.57294439177581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.436804719665525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.75685509429225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.279555020585936,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,18.81,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,18.81,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.934792,Mm²,,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.104322296475688,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.041761128006635,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.072646942570819,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.031675353904869,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.01203390431791,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.656714513556619,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.07735247208931,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.867681360051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.9346628193831,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.68945187708587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.741955327265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.7181842044052,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.91702995216931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.60625967619055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.246330776965023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.28533551310617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.157651697257615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,17.065,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,17.065,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.670948,Mm²,,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.086602377424698,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.037886956376036,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.060311054619404,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026291322805294,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.076327222823672,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.010275154601026,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.574043363609728,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.687214145842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.0702310500088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.83840021282837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.08276196522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,55.0849478720056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.0719362213415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.21035460903071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.229889111482559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.78423492455367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.147129031348838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,14.875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,14.875,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.33982,Mm²,,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.054341140943267,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.033024815475742,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.037934772638046,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016406368305221,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.048166177137542,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006174963805725,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.478547899159664,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.343709972338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,85.8156851826774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.37067307958907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.72651166487,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,54.9220385169136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.58550000277263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.97412644789742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.200793256504132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.48876617355618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.128507684162645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,15.261,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,15.261,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.3830632,Mm²,,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.049748855371736,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.033881795561364,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034556820778366,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01519203459337,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.044242864151503,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005505991220233,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.319855841687963,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.504165806275,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.4872766608645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.19319927378277,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.360290573969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,59.1918570629533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.40092724473408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.16244348848676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.220403025478725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.72807494513123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.141057936306384,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,5.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.22,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.864864,Mm²,,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.014913661972356,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.011589212556865,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010200281125793,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004713380846563,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.012875388775763,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002038273196593,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.59479847217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,82.6967374569556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.68501489615039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.475394059656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.9259119724516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.9124154919964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.742700625782633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.071521431143973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.936404365859626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045773715932142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,5.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.780192,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.064970413490072,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.007348433395008,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.045479289443051,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019491124047022,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.05824597569385,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.006724437796222,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,158.606649286619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,78.305232183524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.430444594006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.1153485974554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.82631697529415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061093115707728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.03395607274568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.049099594052946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,7.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.121904,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.094502419621923,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.009851953630647,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.066151693735346,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028350725886577,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.084721419191054,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.009781000430869,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.6806359985612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.1072659306773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.544407718173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.7886501956335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.65782014262775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.082019334076691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.827480328951224,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.052492373809082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.57,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.57,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.554904,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.045838809517699,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.004664597307586,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.032087166662389,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01375164285531,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.041094492732617,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.004744316785082,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,0.7,dimensionless,M. Eder. Nachhaltige Bürogebäude. 2009,,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.4186914362185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.848338589984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.7817381239975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.9029366975898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.286013378181603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041533642476937,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.359380200847147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026581531185239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.3,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.3,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.36288,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029532006131851,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002727357439584,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020672404292296,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008859601839555,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.026475443497204,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003056562634647,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,56.2332348427945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.5968219758839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.416208250349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.3819660645657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.140139771912909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027432574758609,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.175492744021263,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01755684784551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.27,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.055944,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003466800719826,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0003,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002426760503878,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001040040215948,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.003107986845324,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000358813874502,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,47.6328577491907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.5013304597424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.4937293414721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.6408514942352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01412908880059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00355251843124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.017652252818839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002273611795994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.11,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.016632,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001412400293262,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000176282051282,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000988680205284,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000423720087979,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00126621686291,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000146183430353,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,18.5238891246853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.7862107183656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,23.5253391883503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.983174859754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002554308888582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000961100256668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00312513563898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000615104164267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.05,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00756,Mm²,,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000642000133301,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,8.69211274395128E-05,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000449400093311,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00019260003999,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.000575553119504,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,6.64470137966646E-05,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,14.6867978060005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,56.5860011874667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.69710077151354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,18.6522332136206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.2150407599787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88498480237408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000969194928876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000427790168977,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.0011768609008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000273785708145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.189,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014766003065926,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000840314375969,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010336202146148,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004429800919778,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.013658552835981,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001107450229944,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.328791341536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,79.685232183524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,165.51756500375,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.9985485974553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.152892094939621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015060508882686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.193479744047042,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009638725684919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.59,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.59,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.739368,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.058935612237042,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.007482133170478,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041254928565929,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017680683671113,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.054515441319264,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.004420170917778,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.568187991769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,99.6065402294049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.041598749547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,63.7481857468192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.54707771390532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073645888436335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.692021858524443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.047133368599254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.328104,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.026578805518666,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003193956808455,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018605163863066,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0079736416556,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.024585395104766,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.0019934104139,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.364751379409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,100.602605631699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.623234251849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,64.3856676042874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.229740208169715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033008117318183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.29052227462824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021125195083637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.93,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.306936,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.024781205145423,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00300449901806,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017346843601796,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007434361543627,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.022922614759516,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001858590385907,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,84.4160090110657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,101.608631688016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.208331444053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,65.0295242803302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.167981150305209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031187346975793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.212172662717429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019959902064508,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.25,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.25,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.35532,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.02889000599855,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003784595371749,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020223004198985,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008667001799565,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.026723255548659,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002166750449891,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.4672666427226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,117.866012758099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,76.7934286362577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,75.4342481651831,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.141948276918233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041880151653208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.178918018482571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026803297058053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.359856,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029275206078531,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002967305990591,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020492644254971,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008782561823559,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.027079565622641,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00219564045589,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.4672666427226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,119.04467288568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,76.7934286362577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,76.1885906468349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.143840920610476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042838939805949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.181303592062339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027416921475808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.066528,Mm²,,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004365600906448,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00040494487303,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003055920634513,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001309680271934,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004038180838464,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000327420067984,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,48.4796641091763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,73.9934298847008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.62085643204758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.5691734186539,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.3557951262085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.72569068932948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017374176984016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004922634903369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021860253796714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003150486338156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.39,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.39,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.074088,Mm²,,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000557142857143,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000557142857143,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000378857142857,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000178285714286,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000464657142857,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,9.24857142857143E-05,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,142.303162525707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.685232183524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.725016407648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.9985485974553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.057213958327863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005903719482013,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.072267110339533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003778380468488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.80136,Mm²,,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005485653264347,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005485653264347,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003730244219756,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001755409044591,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.004575034822465,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000910618441882,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.852680466221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.8569030800411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,189.0429041921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,55.5884179712263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.796910270995506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.069603647852222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.00681448767293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044546334625422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.28728,Mm²,,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001514872032861,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001514872032861,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001030112982345,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000484759050515,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001263403275406,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000251468757455,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,136.183663439874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7254721108415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.953252568639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,56.1443021509386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.253049324697173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025201773628003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.319551334349168,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016129135121922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.845,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.845,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.294084,Mm²,,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001677174289401,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001677174289401,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001140478516792,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000536695772608,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00139876335736,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00027841093204,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.514646413526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7254721108415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.863600945178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,56.1443021509386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.236001221400992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025798657740245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.297854710462612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016511140953757,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.715,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.715,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.274428,Mm²,,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001614472168464,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001614472168464,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001097841074555,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000516631093908,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001346469788499,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000268002379965,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,121.463787260436,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.0395946409143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.259009820754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.9853405701852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.215855185605405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017574257878117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.2724007839145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011247525041995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.59,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.59,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.255528,Mm²,,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001414219143726,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001414219143726,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000961669017734,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000452550125992,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001179458765868,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000234760377859,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,118.384190693457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.0051378906423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,150.347922180691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.7232882500111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.195225741815701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01865485687492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.246327870024926,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011939108399949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.46,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.46,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.235872,Mm²,,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001792507208026,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001792507208026,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001218904901457,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000573602306568,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001494951011493,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000297556196532,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,115.304594126478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.2051470724778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39929472522273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.436834540627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.3712941263858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.57526651423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.174767677723484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01561594045028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.220477667540094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009994201888179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.26,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.054432,Mm²,,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004724691103544,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004724691103544,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00321278995041,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001511901153134,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003940392380356,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000784298723188,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.232039407094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.685232183524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.47469004701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.9985485974553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041106143868872,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004337426558214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.050777465580171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002775952997257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.495936,Mm²,,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.065145689430712,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.065145689430712,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044299068812884,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020846620617828,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.054331504985214,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.010814184445498,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.127638675761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.1072659306773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.692101118217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.4286501956335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.518327765301327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036752461036596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.640818830840832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023521575063422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.176904,Mm²,,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021517283123879,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.021517283123879,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014631752524238,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006885530599641,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.017945414125316,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.003571868998564,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,106.107152392338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.848338589984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.756083538269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.9029366975898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.139073962969951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013240970489923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.170749891692503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00847422111355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.179928,Mm²,,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022037240594404,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.022037240594404,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014985323604195,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007051916990209,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.018379058655733,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003658181938671,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,73.0866661089144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,75.5968219758839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.8200659583213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.3819660645657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.10568114624756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013601984984477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.128231219290968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008705270390065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.64,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.111888,Mm²,,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012666581873105,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.012666581873105,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008613275673711,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004053306199394,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.01056392928217,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002102652590935,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.0730085866322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.2095529214306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,64.8627209050229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.2541138697156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.047962574413665,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006512950457273,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.057399024254164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004168288292655,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.56,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.099792,Mm²,,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010957136563859,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.010957136563859,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007450852863424,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003506283700435,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.009138251894258,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001818884669601,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.9121569182791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.7767948012166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,46.8784392862144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.0971486727786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.034037175677679,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006563997906803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040152948515861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004200958660354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.061992,Mm²,,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006246877310497,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006246877310497,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004247876571138,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001999000739359,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.005209895676954,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001036981633543,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,22.7513052499259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,60.0864596012429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.868513934719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,28.8941576674059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.4553341447955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8232544921078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01445214394724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0037248798036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016652397769449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002383923074304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.035,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.96,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.96,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.613872,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006346153846154,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.006346153846154,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005521153846154,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000825,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005292692307692,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001053461538462,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.83178185706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,73.9934298847008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.646362958467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.3557951262085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.490336350944607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045422494790181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.617270991897802,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.029070396665716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.46,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.46,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.991872,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010352564102564,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.010352564102564,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009006730769231,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001345833333333,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.008634038461538,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001718525641026,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.9595274576359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,77.2946752180182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.628599871198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.4685921395317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.581077364635819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076666424097846,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.729067525117807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.049066511422622,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.24,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.24,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.353808,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003589743589744,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003589743589744,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003123076923077,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000466666666667,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002993846153846,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000595897435897,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.447220379377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.0676219701984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.2779698818088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.963278060927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.177940558581888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027620949194032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.222898188864619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017677407484181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.371952,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003782051282051,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003782051282051,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003290384615385,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000491666666667,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003154230769231,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000627820512821,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,52.7070802344169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,78.8482981899004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.9379918977095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.4629108415363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.138526357763812,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02932778220833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.172676815225606,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018769780613331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.34776,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003525641025641,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003525641025641,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003067307692308,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000458333333333,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002940384615385,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000585256410256,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,31.9669400894568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.1120689170528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.5980139136102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.4717241069138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.083506431969387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020904573086594,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.103021960933428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01337892677542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.5,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.24192,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002403846153846,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002403846153846,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002091346153846,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0003125,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002004807692308,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000399038461538,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,26.3568479545522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,67.9266378762697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.4731969022812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.4730482408126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048521065413134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016432812235027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.05955502057398,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010516999830417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.25,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.25,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.05292,Mm²,,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000400641025641,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000400641025641,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000348557692308,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,5.20833333333333E-05,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000334134615385,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,6.65064102564102E-05,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,20.7467558196475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,62.6287979613839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.99052898753733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.3483798909523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.0824306952857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23015014703882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006684321201796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003314315988116,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008144632509498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002121162232395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.72,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.426384,Mm²,,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003802704819832,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.003802704819832,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002281622891899,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001521081927933,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00317145581974,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000631249000092,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,140.583087106986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.6918460274331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70818137614262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.540520625873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,51.0027814575572,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.89650863118832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.395192250274111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033979328076561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.498948719579206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021746769968999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,7.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.19448,Mm²,,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009714590821122,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.009714590821122,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005828754492673,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003885836328449,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.008101968744816,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001612622076306,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,183.975297381561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,82.6802902534619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70818137614262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.648627674583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.9153857622156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.89650863118832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47173113431009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.098759953101955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.86065206318502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.063206369985251,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.233792,Mm²,,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005282782692839,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.005282782692839,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003169669615704,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002113113077136,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.004405840765828,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000876941927011,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,183.932295496094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,85.6687344794906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70818137614262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.594015280039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,54.827990066874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.89650863118832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.52044224359022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.10569739925092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.92223362272449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.067646335520589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,7.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,7.54,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.155168,Mm²,,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004792699981569,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.004792699981569,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002875619988941,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001917079992627,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003997111784628,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00079558819694,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,183.889293610625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,88.6571787055193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70818137614262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.539402885494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,56.7405943715324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.89650863118832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.42202496140023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.102413935810897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.79780677283579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.065544918918974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,7.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,7.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.19448,Mm²,,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004177639157681,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.004177639157681,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002506583494609,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001671055663073,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.003484151057506,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000693488100175,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,183.846291725157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.6456229315481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70818137614262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.48479049095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,58.6531986761908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.89650863118832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47072489019014,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109468863679276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.85937413315268,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.070060072754736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,9.221,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,9.221,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.4093352,Mm²,,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004286047138513,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.004286047138513,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002571628283108,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001714418855405,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00357456331352,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000711483824993,1e6 dimensionless,Own calculations,,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,183.803289839689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,95.31144784881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70818137614262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.430178096406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,60.9993266232384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.89650863118832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.73826427608119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.134325778416292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.19761037831514,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Austria,at,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.085968498186427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,415.6998926,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.27,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.49,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.7944,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.01711,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.45849,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,3.89181818181818,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,1.37818181818182,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,51.45972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,48.8200792927271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.076384,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.652376302582908,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.060657379177538,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.469710937859694,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.125908626398501,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.056756738324713,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.537704109303807,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.059291074590058,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.080694934700975,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.05040474240044,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,2.95505579339791,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.70221595086867,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.261364127866707,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.738635872133292,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.261364127866707,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.738635872133292,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.071803723955078,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,0.928196276044922,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.071803723955078,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.928196276044922,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,251.705228378057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.9085556711051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3984526590967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,312.794087305412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.7521257637623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.7969053181934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.080669370941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062101646458592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.8554324708069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022325541901864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,63.119375,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,59.881641411625,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.44566,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.800190503224585,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.074401014531318,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.576137162321701,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.154436767122345,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.069616573780539,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.726170199635707,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.105092704307659,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.140198343610927,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.76166143517739,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,3.39214088384113,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,2.19296709607787,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.603925102236833,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.396074897763167,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.603925102236833,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.396074897763167,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,209.903921779827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.4369549977044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.0987099428688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,260.847603595791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.0865853216747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.1974198857377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.5855318848136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.088816948361981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,17.6522636814052,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031929692936132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,69.22972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,65.6785600347271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.69635,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.877653964826884,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.081603499575934,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.631910854675357,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.169387215211589,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.076355894939939,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.811018615790091,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.126431658785788,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.169757868876114,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.3388031582511,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.28278512281658,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.767719232996162,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.515995488212715,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.484004511787285,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.021518596479275,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,aluminium,,0,0.978481403520725,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.515995488212715,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.484004511787285,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.515995488212715,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.515995488212715,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.484004511787285,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.484004511787285,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,185.308189629104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.9175893113147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.2644062158068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,230.282487252088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.1933733574176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.5288124316136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.2967554523001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.057536102628249,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,17.3765829535694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020684228894855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,57.8744531,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,54.9057598784543,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.635634,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.733698452336333,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.068218641678331,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.52826288568216,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.141603801300912,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.063831765353261,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.702161449989419,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.110211842117651,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.148001990349633,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.40019816619226,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3.88760443217044,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.919170200003151,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.907735966683373,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.428288334011056,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.571711665988944,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.015891753627647,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.984108246372353,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.428288334011056,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.571711665988944,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.428288334011056,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.428288334011056,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.571711665988944,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.571711665988944,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,170.117029099712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.1731611454663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.284721727012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.404432062213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.25225143179514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.569443454024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.2828741148213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032995908257004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.4922597117219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011862029018393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,60.20613675,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,57.1178388829541,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.722408,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.763258173313514,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.070967078733135,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.54954588478573,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.147308827449508,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.066403461078276,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.690919942817027,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.10219310707831,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.137887690414694,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.701671529356183,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.46163522462683,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.457672955074634,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.510542150339849,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.593313882575267,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.406686117424732,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.593313882575267,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.593313882575267,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.406686117424732,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.406686117424732,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.917998185843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.4986453266108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.1574121589349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.896196345547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.08826299491657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.3148243178698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.85122900450207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038751846699717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.2507050685415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013931288888548,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,67.13602155,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,63.6922524701841,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.005176,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.851111197926011,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.079135576277751,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.612800062506728,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.16426446119972,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.074046674219563,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.783779318515843,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.094242919300735,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.128602795960809,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.371005101135606,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.168310934862061,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.831689065137939,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.168310934862061,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.168310934862061,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.831689065137939,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.831689065137939,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,109.040901088046,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,17.0023939058147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.734417823757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.505127782115,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.11236060914039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.4688356475139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.00140681576866,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.034092792202486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.7433192378879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012256358796794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,46.6744531,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,44.2802683584543,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.659628,Mm²,,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.591711405789764,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.055016810025993,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.42603221216863,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.114200301317425,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.05147889230371,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.564166485565212,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.073726860231075,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.101110900117027,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.104869499799238,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.895130500200762,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.104869499799238,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.104869499799238,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.895130500200762,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.895130500200762,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.2857983502251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,4.52073839866084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9634708147285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.256561609825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.62520545431857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.926941629457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.38872350289288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007502744027093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.01812052920638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00269723647774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Constructed area [Mm²],,0,39.3883593,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.51,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.34,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.5272,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.67743,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.30537,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,3.43,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,13.44972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,12.7598174467271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.826976,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.183697961051976,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.132262531957423,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.035453706483031,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015981722611522,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.179511112936831,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003186848115145,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.765,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.415,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.765,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,410.898821937686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.9085556711051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,510.623966021962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.7521257637623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.41423096280619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024733657734668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.8579426019762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008891749955613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.255,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.036738073,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.196252,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.089319685624977,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.064310173649984,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017238699325621,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007770812649373,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.087283909314436,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001035776310541,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,410.898821937686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.4701490529692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,510.623966021962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2680185845424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.71286402449129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008334851691943,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.16960141627628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002996379183254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.48972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.41331043072713,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.418304,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.036600865606329,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026352623236557,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007063967062021,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003184275307751,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.035766657843222,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000734207763107,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,333.054418865392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.9761192423754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,413.886726324023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.2144148676339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.489675938481362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014212346583563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.622883736051528,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005109338596791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.91972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.87254880872713,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.398696,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027224078069831,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019601336210278,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005254247067477,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002368494792075,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.026603586261972,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000520491807859,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,255.210015793098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.2387461257141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,317.149486626083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8708292321942,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.234392817752052,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012056067125338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.300147651737115,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004334156131559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.07972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.92175074472713,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.473,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.065804917612487,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.047379540680991,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01270034909921,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005725027832286,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.064305090430436,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001399827182051,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.880933338988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.8196464356569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.277135860361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.0011628936187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.369019904586623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013158692764066,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.488274733244078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004730550048682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,11.29972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,10.7201025567271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.755768,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.216430802415228,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.155830177738964,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.041771144866139,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018829479810125,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.211497906633684,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003932895781544,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,195.615169918908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.0903065415953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,243.090971658227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.3009652017035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.24087867429441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017450914794328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.89368812901486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006273603868561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,4.89472655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.64364959372713,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.535436,Mm²,,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.115047803277084,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.082834418359501,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022204226032477,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010009158885106,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.112425631122621,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002522172154463,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,96.1594491120175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.4939693213453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.7316347413833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.497347411504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.00808197102362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4632694827666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.508848657395596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010437772957544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.679539549946003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003752379378237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Constructed area [Mm²],,0,444.9730666,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.636635187941438,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.413327820869631,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.458377335317835,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.122870591272697,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.055387261350905,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.461818181818182,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.174817006123256,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,34.315,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,32.554798349,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.230316,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.468678341530932,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.337448405902271,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.09045491991547,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.040775015713191,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.339981489623985,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.05530404430065,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.073392807606297,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,195.375044166301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.9085556711051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.792567385462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.7521257637623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.92117426927507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036796974579051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.02562127989805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013228512361169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,33.864375,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,32.127288338625,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.2148145,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.710870817599608,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.511826988671718,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.137198067796724,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.061845761131166,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.515669059313218,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.083882756476754,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.111319001809636,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,195.375044166301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.8079669093207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.792567385462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5794641039008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.83028532405892,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076300028916963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.90709671078092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027429860395648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,34.2325,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,32.4765302195,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.227478,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.841053099220555,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.6055582314388,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.162323248149567,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073171619632188,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.610103903226777,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.099244265708026,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.131704930285753,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.05897970357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.9163021310332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.244694077626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.1929106161064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.4720748369767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041631514707196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.4665044060183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014966529537237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,23.86722655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,22.6429476172271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.18809,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.706474374266502,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.508661549471882,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.136349554233435,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.061463270561186,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.51247985848829,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.083363976163447,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.110630539614766,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,168.742915240839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.0106182573096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.696820769791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.19381726350279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.21087755359595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023774415445327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.52823525422831,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008546902352595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,32.6414102,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,30.9670560072269,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.189106004,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.697453255701027,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.502166344104739,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.134608478350298,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.060678433245989,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.505935896337305,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.082299484172721,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.109217875191001,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.380889065917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.2117862656136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.228730842214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.9851371624881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.70386386072117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026412168408006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.00675750361374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009495174542678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,33.136295,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,31.436555493457,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.189768548,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.634680395510783,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.456969884767764,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.122493316333581,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.055217194409438,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.460400166126847,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.074892286670272,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.099387942713664,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.520656163935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.7703682485857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.732719414922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.66944738536655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.41861077730341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018763088132545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.65839812732552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00674533018365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,20.27972655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,19.2394698647271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.06468,Mm²,,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.47666360251268,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.34319779380913,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.091996075284947,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.041469733418603,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.345774035775666,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.056246305096496,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.074643261640518,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,80.6604232619534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.76654139957722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.23670798763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,0.99457163314801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.88327706790385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002945481297302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.59132769322617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00105890052638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-109.7492383,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.12336481205856,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.808181818181818,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.315182993876744,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.695,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.505463497,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.019092,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025313816011931,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01822594752859,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004885566490303,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002202301993038,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.01821150674299,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.002987030289408,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004115278979533,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,195.375044166301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.9085556711051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.792567385462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.7521257637623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.745264138859722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000571014144873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.971868588932632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000205279585082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,25,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,23.717615,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0345935,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.171270744329709,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.123314935917391,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033055253655634,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014900554756685,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.123217231008053,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.020209947830906,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.027843565490751,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,195.375044166301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,62.8079669093207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.792567385462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5794641039008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.04238253626335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002172747403278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.57556555434799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000781102691478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,33.5075,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,31.7887193845,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.050568,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.229554178625109,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.165279008610079,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044303956474646,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019971213540385,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.165148054720093,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.027087393077763,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.037318730827253,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.05897970357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.9163021310332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.244694077626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.1929106161064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.33500467684209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001715079566162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.28719481149955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000616571104035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,33.0875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,31.3902634525,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.048848,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.22667683012037,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.163207317686666,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043748628213232,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019720884220472,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.163078005239158,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.026747865954204,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.036850958927009,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,168.742915240839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,20.0106182573096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.696820769791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.19381726350279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.83760374347333,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000977478680633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.66387680575643,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000351403585688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,24.485,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,23.229032131,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.060301996,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.167742566996517,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.120774648237492,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.032374315430328,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014593603328697,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.120678956049287,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.019793622905589,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.027269988041641,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.380889065917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,22.2117862656136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.228730842214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.9851371624881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.77834523919429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001339415046542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.75567283168368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000481519709232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,22.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,21.53559442,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.059639452,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.155513835851376,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.111969961812991,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030014170319316,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01352970371907,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.111881245755312,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.018350632630462,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.025281957465602,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.520656163935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.7703682485857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.732719414922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.66944738536655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.34191736417084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000940536120184,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.19123298154755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000338122735206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,21.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,20.3971489,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.059512,Mm²,,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.14729284012355,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.106050844888956,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028427518143845,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012814477090749,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.105966818666925,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.017380555134579,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.023945466322046,1e6 dimensionless,Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,80.6604232619534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.76654139957722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.3420983247606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.23670798763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,0.99457163314801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.6841966495213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.99659777759344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000164642411772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.74725328603421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.91889470319044E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.146,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,62.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,62.35,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,8.86681,Mm²,,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.431166081359785,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.060118214238542,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.224679353072774,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.204339460683219,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.379541311571407,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.051624769788377,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.523037827678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.68500725274842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,205.361954258384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3700145054968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.4230216107646,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.65511242666329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.8826382524279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.255493846398683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,18.3,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,18.3,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.94402,Mm²,,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.182214227703118,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01764496103553,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.087915097163534,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.094028827813221,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.162303259505916,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.019910968197202,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,-6.93889390390723E-17,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,166.64632568464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.3658745256365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.33682656546424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.976201051029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6126910649982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6736531309285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.18389168617691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.215990601920964,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.83659233152982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.084236334749176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.63,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.81037,Mm²,,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.048048861214028,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.004464271562541,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023210781980418,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024775599625585,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.0428105013808,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005238359833228,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,157.355461340455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.6228949636173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.55984015382621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.105889768332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.7129290358108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.1196803076524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.76355784591852,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.059661785391667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.922414389451807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02326809630275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,17.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,17.66,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.63266,Mm²,,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.132939771369287,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.017027869502047,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.062119000497304,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.070411164639082,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.116735454021913,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.016204317347375,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,2.77555756156289E-17,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,169.140567684273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.1272833153249,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.98444971602286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,197.8944641906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.2496404929767,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.9688994320457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.12802780728923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.210947893692923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.77682700157592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.08226967854024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,20.77,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,20.77,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.08719,Mm²,,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.16136886046169,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.020026548672566,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.076220432005061,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.084697942771054,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.142241450463791,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.019127409997899,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.559178795728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.5499266982248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.93691685114964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.584239191002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.2944714123077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.8738337022993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.85579390658564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.223975408203493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.47810417399386,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.087350409199362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,24.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,24.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.58342,Mm²,,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.181254385096086,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.023468762382776,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.085132374677072,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.095543629687961,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.15931900267318,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.021935382422906,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,-5.20417042793042E-17,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.995687536188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.6254309930556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.09588361262414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.81495441734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.8839180872917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.1917672252483,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.75058884176209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.274581101929135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.55174360478061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.107086629752363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,3.37,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.37,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.50179,Mm²,,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.036445289266277,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003249372605997,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017744598231644,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018686158182341,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.032606249014369,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003839040251908,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.844107384772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.1549968106965,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.47722837279286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.217605640183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.1204487561716,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.9544567455857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.429072901502993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027174435849639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.522929850240041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010598029981359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,16.9,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.9,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.38246,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.214248311306877,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.018179805760297,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.104638875242279,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.109609436064598,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.192073611086615,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.022174700220262,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,158.471102375998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.411189779918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.79982803825445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.166024878398006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.49678192348078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.068649702575222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,11.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,11.79,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.87233,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.149466721320005,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.013297510987841,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.07299954669269,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.076467174627314,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.133996915663384,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.015469805656621,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,158.471102375998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.7118091846854,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.411189779918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.7976055820273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.95325281485325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.128651181690762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.3557549631857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.050173960859397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.47121,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.039933856841223,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003559095895662,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.019503695681253,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.02043016115997,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.035800702658156,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.004133154183067,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,151.749954454215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.3989272765322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.547446711431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.0655816378476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.500689823129312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032701468521975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.60462939033808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01275357272357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.58102,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.051977400967941,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004348678095692,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.025385762632742,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.026591638335198,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.046597739967759,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.005379661000182,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.028806532431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.8494652333715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.683703642944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9012914410149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.624134809339792,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.037097816289894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.754736590049721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014468148353059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.58,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.58,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.94798,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.083417389846109,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0071638159813,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.04074105320084,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.04267633664527,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.074783689997037,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.008633699849072,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,115.061119468332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.6335507960321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.621509777948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.9170848104525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.804472874107453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.050843533483623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.98055095035056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019828978058613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.89516,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.078599972195422,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006633751483272,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.038388226420244,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.040211745775178,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.070464875073196,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008135097122226,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.491567235402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.8065312243892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.20513366542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0345471775118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.909482730482008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.043689654490824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10114185597064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017038965251422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.75,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.41561,Mm²,,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.034862890893131,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003123541795936,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.017027035912205,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.017835854980926,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.031254581685692,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003608309207439,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,122.016582638765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,52.4673869900497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.759401687355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.4622809261194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.355343390556912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021805970706935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.432183931240844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008504328575704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,14.37,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,14.37,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.03079,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.182174451685196,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01067765094547,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.081067630999912,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.101106820685284,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.158491772966121,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.023682678719076,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,271.80568843323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,318.012655466879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.02782898138611,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.150042209649642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.81380433626024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.058516461763361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.33638,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0276367644171,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001404176713305,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.01229836016561,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.015338404251491,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.024043985042877,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003592779374223,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,271.80568843323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.3545822374804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,318.012655466879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.0182870726173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.611041557371031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031066234373044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.730277902090976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012115831405487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.10703,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006719029881222,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000336969039824,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002989968297144,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003729061584078,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.005845555996663,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000873473884559,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,259.534968832909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,92.818851218458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,303.655913534504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.1993519751986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.142052493569007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009934401645912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.169935554348418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003874416641906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.73,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.73,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.82983,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.072641587206414,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004433371472057,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.032325506306855,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.04031608089956,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.063198180869581,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.009443406336834,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,247.264249232589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.2831201994356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,289.299171602129,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.3804168777799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.46546384867207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.077409131635098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.75496365441888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030189561337688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.7784,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.06795094370443,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.004043413208228,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.030238169948471,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.037712773755958,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.059117321022854,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.008833622681576,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,179.682798569517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.208419431345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.228874326335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.2012835782247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.00859871744459,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.084229433685359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.21782460061312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03284947913729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.02026,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.090009645578629,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005433404997624,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.04005429228249,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.049955353296139,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.078308391653407,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.011701253925222,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,198.428018461464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,109.290503625659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.160781599913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.6232964140069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.46910801904189,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.111504729229115,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.76887972529038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043486844399355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00973,Mm²,,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000887419040916,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.94227504244482E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000394901473208,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000492517567708,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.000772054565597,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000115364475319,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,170.606165779732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,52.916679552286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,8.4886039388028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.609213962287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6375050253916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.9772078776056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012536633880298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000514879292044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015161049528793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000200802923897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,13.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.17,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.86399,Mm²,,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008902436168289,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.008902436168289,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.006755168564498,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.007424631764353,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001477804403936,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.447138893676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.433152505601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.66683745849993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.137718414195873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.9842618970392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.05371018153639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.98,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.30858,Mm²,,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001120658069497,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001120658069497,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000850355343134,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000934628829961,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000186029239537,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.447138893676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.5331957110829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.433152505601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.4079463273223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.250595153214113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024850933532526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.298317278370358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009691864077685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.09869,Mm²,,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000259036517517,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000259036517517,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000196556909492,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000216036455609,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.30000619077848E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,115.616076636185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,80.9375590170956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.270809664337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.5656480166673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.055804108825158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007987727699397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.066506386154539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003115213802765,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.69,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.40727,Mm²,,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001698201628943,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001698201628943,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001288595396042,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001416300158538,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000281901470405,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.785014378695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.3419223231084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.108466823073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.7233497060123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.298323916441549,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033128124704532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.355996231279787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012919968634768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.45036,Mm²,,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001867685263578,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001867685263578,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001417199578003,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001557649509824,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000310035753754,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.5304512463244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.3796032958691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.2206279581995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.158045285389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.250939563139933,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026742198140328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.301358302676519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010429457274728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.78,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.55878,Mm²,,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002397930062408,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002397930062408,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001819549331355,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001999873672049,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00039805639036,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.3400800343897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,67.6927477572908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.847893640236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.4001716253434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.334364246375203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.037825353591819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.400982525650511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014751887900809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.02502,Mm²,,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,6.02522897679307E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,6.02522897679307E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,4.57194374759058E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,5.02504096664542E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.00018801014765E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.5760651737548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.3833482806518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.11606980032001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.9139962532932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.9395058294542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.23213960064003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013624584295334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001535811373982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016406304453708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000598966435853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.024,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.7,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.54766,Mm²,,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009025327469551,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.009025327469551,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.004731076659539,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.004294250810012,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.007527123109606,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001498204359945,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.447138893676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.433152505601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.529509271209937,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040463128406543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.679912378877393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015780620078552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.41,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.41,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.09035,Mm²,,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000722228566561,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000722228566561,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000378592214591,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00034363635197,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000602338624512,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000119889942049,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.447138893676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.7118091846854,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.433152505601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.7976055820273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.058675351674615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006208111959836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.075341641983711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002421163664336,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0278,Mm²,,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000457125188375,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000457125188375,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000239625023746,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000217500164629,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000381242407105,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,7.58827812702615E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,115.616076636185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,69.0562668157333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.270809664337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.931944058136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027055910316607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001919764217477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.034919551911606,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000748708044816,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.18209,Mm²,,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002619076136753,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002619076136753,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001372919710886,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001246156425867,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002184309498052,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000434766638701,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.785014378695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.4007244467812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.108466823073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.0662825342447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.136369883578329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012637177914514,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.17701589588694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004928499386661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.19,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.19,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.19877,Mm²,,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002885252309083,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002885252309083,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001512449260421,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001372803048662,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002406300425775,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000478951883308,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.5304512463244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.4385578240215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.2206279581995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8410375513684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.119230772169874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010621982138681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.158921617643753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004142573034086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.75,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.27661,Mm²,,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004394363827155,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004394363827155,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002303525518195,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00209083830896,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.003664899431847,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000729464395308,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.3400800343897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.3855703411443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.847893640236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.5503724330463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.183756221217164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016703252612064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.243555976184377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006514268518705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0139,Mm²,,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00012061737559,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00012061737559,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,6.32276282844119E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,5.73897473058436E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000100594891242,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.00224843479824E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.5760651737548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.7122777173125,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.663474946847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.9139962532932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7277883097519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.326949893694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00922395401206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000774400660271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.012424094614699,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000302016257506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.012,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,7.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,7.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.08003,Mm²,,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009210600628696,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.009210600628696,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.004405430280705,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.004805170347991,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.007681640924332,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001528959704364,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.447138893676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.433152505601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.00318538722363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.079796575563157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.23483850107568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031120664469631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.04,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.04,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.17792,Mm²,,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00103576775896,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00103576775896,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000495407719111,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00054036003985,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000863830310973,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000171937447987,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.785014378695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.6671558162848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.108466823073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.9501907683511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.122265547571163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012751020362833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.151491070730636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004972897941505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.16,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.16,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0556,Mm²,,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000115082433031,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000115082433031,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,5.50439277185604E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,6.00385053120907E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,9.5978749147563E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.91036838830881E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.5304512463244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,72.0265898660739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.2206279581995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.0903700477688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014449354140538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004004678396554,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018204264355564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001561824574656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.6,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.25576,Mm²,,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001849479937228,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001849479937228,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000884606253976,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000964873683252,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001542466267648,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00030701366958,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.3400800343897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.386023915863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.847893640236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.2305493271866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.152188947466285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018513449476721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.191046268646901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007220245295921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.26,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.3475,Mm²,,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002714230931411,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002714230931411,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001298216654494,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001416014276917,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002263668596797,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000450562334614,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.838435320496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.7372384152145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.310969324981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7375229819337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.360733171242729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019368690349287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.440399405511271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007553789236222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.44,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.44,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.37252,Mm²,,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002883674991051,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002883674991051,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00137926174822,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001504413242831,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002404984942536,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000478690048514,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.1037694315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.9830794091924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.511410234855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.563400969585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.431591547015035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023462456741512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.524764540177395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00915035812919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.13,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.13,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01807,Mm²,,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000103064032213,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000103064032213,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,4.9295526607564E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,5.3768505605616E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,8.59554028657921E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.71086293473879E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,160.93757867757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,58.0685675992633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,9.77801213203867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.296967052757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.6467413637127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.5560242640773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022193026805249,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001049299016519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027020888871189,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000409226616442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.68,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.68,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.96188,Mm²,,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007604954101176,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.007604954101176,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00304198164047,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.004562972460705,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00634253172038,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001262422380795,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.757761468586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.8836657899843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,236.056580918246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8146296580939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.39583247419054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.07106722045007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.67303921569466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027716215975527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.9,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.9,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.15846,Mm²,,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002232087570995,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.002232087570995,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000892835028398,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001339252542597,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001861561034209,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000370526536785,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,201.757761468586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,76.6543032571087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,236.056580918246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.8951782702724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.188061261492738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012146640894122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.225409475168442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004737189948707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.12,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.05004,Mm²,,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000564730352661,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.000564730352661,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000225892141065,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000338838211597,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00047098511412,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,9.37452385418043E-05,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,188.685437070255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,80.8102594577953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.761961372198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.5160011885402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023506155937899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004043745383268,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.0282192423436,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001577060699475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.37669,Mm²,,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002154025492009,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.002154025492009,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000861610196804,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001292415295205,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001796457260336,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000357568231673,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.613112671923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.9662156584819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,205.46734182615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.136824106808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.451546401791201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032005923776394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.543068361293692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012482310272794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.38,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.38,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.36418,Mm²,,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00253335840708,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.00253335840708,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001013343362832,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001520015044248,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002112820911504,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000420537495575,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.817110338912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,86.6635431158194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.866019096527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.7987818151696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.31181880848106,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031561129131919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.379049297198634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012308840361449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.46009,Mm²,,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002968798441421,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.002968798441421,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001187519376568,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001781279064853,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002475977900145,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000492820541276,1e6 dimensionless,Own calculations,,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,130.353272538078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.3608705731569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.19919574556693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.513328869551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4607395235312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.3983914911339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.42228607763079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040653952942004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.512418981507303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Belgium,be,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015855041647382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,238.9996308,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.47,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,2.12,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.76821,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.11622,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.58557,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,2.52932735426009,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,49.8028044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,36.3929844406306,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,6.6563,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.931459747125266,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.441766144050462,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.7852205668266,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024217953425257,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.12202122687341,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.816754370388565,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.248143475063025,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021993735194302,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.3656320132647,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.91167718338367,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.35190260630383,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.757651102852353,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.487347174113352,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,0.007125321641526,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.505761529766384,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.724083766656321,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.275916233343679,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.724083766656321,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.275916233343679,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,0.367915046567137,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.275916233343679,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,0.356168720089184,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.275916233343679,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.367915046567137,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.356168720089184,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.0221181429072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.870389288592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.94374812301082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.289264591185017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.36055795078984,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044344261828663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,54.1928044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,39.6009403704049,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,7.253568,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.0135657317007,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.480706789978857,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.854435911823693,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026352709024218,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.132777110852792,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.849910971296627,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.334552257745029,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.025529469508492,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.43524364289957,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.0807686341104,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.15045082988914,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.348770176138,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.643376968326813,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.356623031673186,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.643376968326813,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.356623031673186,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,wood,,0,0.643376968326813,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,0.356623031673186,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.356623031673186,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.643376968326813,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.0397945168158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.7093159086467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.897872514745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.46003812879554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.20393259315183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.44761271917685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.74601923344509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.068619029849811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,34.8828044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,25.490318729416,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.972192,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.652411617315352,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.309421169733455,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.549982993396842,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016962702050199,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.085465921868311,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.478243759777864,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.249916101031113,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.067751288971638,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.10233788101051,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.42909627816507,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.991923689713433,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.49839177351234,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.651793988215007,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.348206011784993,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.439368406973609,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.7078940400094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.1115382519592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.0530336534066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.99579881402534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.9009039915957,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.155358539352126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.80396783382562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023816464082681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,32.8328044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,23.9922983066284,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.603397,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.614070553903132,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.291237041224752,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.51766147694034,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015965834401482,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.08044324256131,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.458529937138502,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.238136682344623,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.061730458047522,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.831355593432037,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.38857203388937,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.899583951013335,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,1.19557405632399,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.627920842485207,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.372079157514793,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.497258839089603,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,43.8332020401396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.368418549595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,68.151862532009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.26157856365291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.31235172601774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.170687217296355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.89779354570501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026166350411531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,25.6128044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,18.7163434517377,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.304519,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.479035198861069,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.227193427647755,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.403826672639881,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012454915170388,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0627536110508,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.313183537245944,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.186016308156242,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.093208779299221,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.648875562412057,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.03926256322014,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.606371812998346,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,1.09201133258176,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.625327939489516,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.374672060510484,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.481259373534278,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.9454037947183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.8743138200279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.21302637200062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.100148092245407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.77473171023919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015352702541221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,26.5728044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,19.4178554546041,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.477223,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.496990038312645,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.235708921973782,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.41896260229756,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012921740996129,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.065105695018957,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.352565968024073,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.195512159657541,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.074572062310554,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.423280196575714,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.6536166390477,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.899515735569107,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.936401142515466,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.063598857484534,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.063598857484534,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.599726019132554,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.400273980867447,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.7076987261344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8966664850313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,64.8471299793938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1963589721553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.02086213214425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.083969601840049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.47178377283051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01287253996208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,15.1028044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,11.0362485036904,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.131571,Mm²,,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.282467112781833,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.133966505390936,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.238119776075085,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007344144932328,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03700319177442,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.097930167459741,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.112237579397661,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.147276773517316,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.409443549239107,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,0.955197710168318,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.220322060848514,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.551977101683181,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.448022898316819,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,0.448022898316819,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.551977101683181,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.551977101683181,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.448022898316819,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.551977101683181,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.448022898316819,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.448022898316819,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.551977101683181,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.551977101683181,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,36.6976282545986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.3364667588765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.0574724102498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.80388035413576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.000344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.524920411849801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035459437026809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.750528075076691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00543593169621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.24,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,1.68,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.88832,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.05824,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.29344,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.72,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,35.4764022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,25.92408537689,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.281864,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.901721277897404,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.5,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.760151037267512,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023444753225333,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.11812548740456,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.7,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011721277897404,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.355,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.88,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.378,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.564,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.3033,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,0.7,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.986498441154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.143807776306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.2515631065474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.229535362086273,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.34658137714384,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035187771007826,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,34.8664022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,25.478332958402,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,4.979632,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.940717992355787,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.52,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.793025267555929,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024458667801251,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.123234056998608,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.68,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010717992355787,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.7776067047347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.7093159086467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,122.483422904521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.46003812879554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.28396132675727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.307289684196806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.39960464824616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.04710750858737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,19.5564022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,14.2906779960229,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.417856,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.561162838163177,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.26,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.473060272571558,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014590233792243,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073512331799376,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.33,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.176205131183238,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.05495770697994,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.7984465272101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.1115382519592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,116.296624660506,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.99579881402534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.2241983473911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.094566067431729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.81840883264763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014496978137284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,16.5064022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,12.0619159035829,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.869161,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.491652008123022,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.414462642847707,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012782952211199,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.064406413064116,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.29,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.154378730550629,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.047273277572393,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,1.265,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,1.265,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.8747612955856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.368418549595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.1068788623765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.26157856365291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.636150682697964,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.08853920058458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.917364915182748,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013573059449616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,13.2864022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,9.70892772730204,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.289883,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.39738352225103,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.334994309257618,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010331971578527,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.052057241414885,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.124778425986823,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.082605096264207,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,1.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,66.246100215189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.999436614576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.748672632672878,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056054786994502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10630530364374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008593198846257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,14.2464022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,10.4104397301684,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.462587,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.444285974107465,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.374533076172593,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011551435326794,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.058201462608078,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.24,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.139505795869744,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.064780178237721,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,50.8990734364338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8966664850313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.1378793789672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1963589721553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.642998169799409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.049576823744343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.937831341248075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007600127080008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,6.7664022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.94449204116804,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.116935,Mm²,,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.218272990401771,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.184004130908693,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005675097750446,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.028593761742632,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.068537718986156,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.139735271415615,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.4877410886754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.3364667588765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.7243398446725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.80388035413576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.278639007251668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003664329740449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.403827153078847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000561741749211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.27630415842441,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.235340031235317,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.07592440555177,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033183908119035,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.167195844753597,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.80932735426009,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.854967753493371,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.10794,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.029738469227862,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025069529559088,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000773200199924,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00389573946885,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.018857696624324,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.009337879337549,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001542893265989,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.414,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.69333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.25666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.643333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.3033,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,0,0.3033,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.3033,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.2525513402694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.9066668238509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.056528949694167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004690777154352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.082807429944491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000719096137762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.97300250806163,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.383187,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.072847739344917,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.061410644267765,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001894041222968,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009543053854184,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.046194057865198,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.022874190154304,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003779491325415,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.27607031511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.7093159086467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.3884341259331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.46003812879554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.128524822859441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023646207635087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.188098592181859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003624963630459,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.3237585094948,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.469539,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.091248779152175,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.076922720825283,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002372468257957,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011953590068935,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.057862487184764,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.028652116653783,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004734175313628,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.5564120268396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.1115382519592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.0503094193302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.99579881402534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.140406334147399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018364392559287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.204486312172376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002815261379339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.00334826227159,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.636846,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.122418545780111,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.103198834092633,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003182882190283,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016036829497195,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.077627795157304,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.038439423374955,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006351327247852,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,1.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.8132347637285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.368418549595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.2304174106451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.26157856365291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.170226499016684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030166387879635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.246809750351141,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004624507261948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.73,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.9949247581512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.388584,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.081651676610039,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.068832363382263,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002122943591861,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010696369635915,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.051776792362161,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.025638626455552,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004236257792326,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,1.09,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.6867093816417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.2596957465765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.10284312387314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016886797755666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.148038333237958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002588746095944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.23495342171265,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.201488,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.05270406420518,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044429526124967,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001370305669335,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006904232410879,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.033420592231392,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.016549076160427,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002734395813361,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,31.0846459675743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8966664850313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.3304075503844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1963589721553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.051806689900382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006829771536736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.073205802177114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001047003976582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.99,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.45417592260838,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.973259,Mm²,,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.064194122380062,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054115645166393,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001669047181882,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008409430031788,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.040706644166263,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.02015695442734,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00333052378646,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,29.5629630367009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.3364667588765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.9644949294625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.80388035413576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.058790349048932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030498498301277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.08276046182128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004675419789586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,80.7248154,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.953695841575595,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.60067264573991,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,13.1564022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,9.61393131024722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.266496,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.155431833520625,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.131029035657887,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004041227671536,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020361570191202,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.097896673764241,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.048805595725476,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008729564030908,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.2525513402694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.9066668238509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.635656066769258,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.055038451944393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.931407245739476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008437394683075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,16.6264022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,12.1496049039412,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.890749,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.196426966849445,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.165587933054082,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005107101138086,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.025731932657277,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.123716913431429,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.061678067590726,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01103198582729,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,54.27607031511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.7093159086467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.3884341259331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.46003812879554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.79144644353512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.116676827344958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.15861990289504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017886557631982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,12.1464022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.87588222389824,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.084797,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.143499532465263,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.120970105868217,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003730987844097,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01879843875295,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.0903812725931,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.045058853194093,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008059406678071,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,49.5564120268396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.1115382519592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.0503094193302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.99579881402534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.536299310057202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042428079361111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.781296329523572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006504224566058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,12.2164022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.92703414077391,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.09739,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.144326523627516,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.121667259417996,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003752489614315,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018906774595205,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.090902141981199,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.04531852841904,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008105853227277,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.07,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.8132347637285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.368418549595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.2304174106451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.26157856365291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.505974544303095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.05198162883214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.733844583889086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007968783699967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,9.5964022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,7.01249096628449,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.626052,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.113373425840338,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.095573797983405,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002947709071849,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014851918785084,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.071406744883783,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.035599255713866,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006367425242689,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.6867093816417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.4572647243991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.2596957465765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.66199868225038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.361510615454605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02720650749524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.520565432755453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00417075759902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,10.6364022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.77246230272304,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.813148,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.125660151679523,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.105931507865838,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003267163943668,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016461479870018,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.079145375792681,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.03945728762737,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007057488259472,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,31.0846459675743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.8966664850313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.3304075503844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1963589721553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.326057272444462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02756300655897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.460943834563284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00422540890549,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,6.3464022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.63758053991401,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.041377,Mm²,,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.074977407592885,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.063205954600802,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001949412597415,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009822040394668,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.047223523293478,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.023542905984166,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004210978315241,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,29.5629630367009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.3364667588765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.9644949294625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.80388035413576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.0194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.187491055549201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001296608985082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.264058385014531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000198770157413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.063,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,13.6441,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.6441,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.80934894,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.099742688916701,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.012853680273828,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046484004151134,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.05265018880684,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.090736592702552,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.00900609621415,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.561648173682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.03729072317166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.0937052239967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.0745814463433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.922326682202561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.247177674988396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.43492662015879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.051907311747563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.32,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.32,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.334576,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.144585233127119,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.014432493297106,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.068694342694097,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.075373855523306,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.130735301782952,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.013849931344167,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.57754569190601,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.92310704960835,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.23524804177546,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.998694516971279,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.2364706157677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.3430342081063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.82378180876286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.1594353359669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1820371837023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.64756361752572,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.07332306714381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.30459028963753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.60692322396751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.073963960823881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.103168,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.071880165767121,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.007724963775213,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034265513603693,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.037345868672456,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.064890595382769,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.006989570384352,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.46420731707317,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.82878048780488,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.13567073170732,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.878353658536585,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.2894973664919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.9869562428609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.04770560552256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.2000359970677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3172608110008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.0954112110451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.560365064370519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.101477066544524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.871622667106525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02131018397435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.65,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.65,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.244198,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.076709159148804,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.008148894714097,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.036503279130178,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.039918431007448,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.069300825408482,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.007408333740322,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,1.25685549132948,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.75618497109827,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.993815028901734,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.73528323699422,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.6840490203555,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.8529685339539,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.04069388520342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.2397545109403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2391233921303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.0813877704068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.568519026133084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.108062289744008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.885077880733653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022693080846242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,8.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,8.98,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.319414,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.098876236778343,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.008459777402612,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046869897855996,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.051857014760696,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.089411491370476,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.009464745407867,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.68095768374165,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.56826280623608,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.574610244988864,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.4561615041599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.0834749116273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44484332932702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.2933654863231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.0775297314417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.88968665865404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.537911023404713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.11357974196705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.836783808261895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023851745813081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.05,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.742758,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.059740813150148,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006641584709177,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027924357998213,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.031633533053912,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.054232499370896,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005508313779252,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.04083408558608E-17,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.480992907801419,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.50744680851064,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.8150637717757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.688834964262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.07113870024676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.3188969330991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.254655342495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.1422774004935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.422197727427758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.068102615680385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.658901279051828,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014301549292881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,5.03,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.03,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.10969,Mm²,,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.035840042530913,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004738605827966,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016928292718788,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018754959442392,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.032412689324995,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003427353205918,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-5.20417042793042E-18,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34817097415507,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.65367793240557,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.18817097415507,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.389264413518887,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.9256061610775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.6957278899047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.78036427978839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.9269213648378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.73610285688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.5607285595768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.290261031317556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008741824392244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.455152879119806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001835783122371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.62,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.62,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.263256,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.030298791574535,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001968408262454,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014797929805003,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015500861769532,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.027162866646571,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003135924927964,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.3286577828347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.2995598299088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.10919711238756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023162308206095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.167594660483188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00486408472328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.52,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.52,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.172116,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.084537369084505,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005492102065614,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041288051060872,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043249318023633,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.075787751384259,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.008749617700246,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.5943915787712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.8250928057404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.743475199732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.1832694892055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.314914541443912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.095908500479093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.423176290918521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03014078510061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.35,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.35,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.492038,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.043951950740838,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002855407047388,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021466132741825,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022485817999013,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.039402923839161,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.004549026901677,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.7062800821575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,82.6401022190856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.8735457248794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.354421466008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.159290630990301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040662070615675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.244464578047929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008539034829292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.43,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.43,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.51711,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.045448187361803,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002952612393682,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022196894707504,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023251292654298,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.040744299969856,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004703887391947,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.1748124902845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,76.0274122062618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.9857149852325,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.965756563315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.153701824520443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03931453512598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.236049347752218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008256052376456,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.28,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.755294,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.061345701459552,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003985419198056,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029961240592845,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.031384460866707,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.054996421358489,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006349280101064,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.5034852022494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.4147221934379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.8452975074191,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.577091660622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.185583883708024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052428523184371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.285357480313627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011009989868718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.34,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.175504,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.025061963401159,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001628189550425,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012240262925126,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012821700476033,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.022468050189139,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00259391321202,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.6608278269672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.1673971960285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.0844582969901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.265153411166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.076028645266132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011086130877492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.116899446073958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002328087484273,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.92,Mm²,BPIE. Data Hub for the Energy Performance of Buildings. 2015 https://www.buildingsdata.eu,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.92,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.043876,Mm²,,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017206721141094,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001117861482382,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00840376260531,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008802958535784,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015425825502991,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001780895638103,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,50.8908985387285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,62.4964036506096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.07696714775792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.3541657788673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.124244766628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15393429551584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048730436431568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002742092206574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.074987452068433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000575839363381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.3241,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.3241,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.79732094,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.062170501896859,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002502314797389,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027665873344102,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.034504628552757,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.057507714254595,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.004662787642264,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.958028281706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.256202988193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.227229091095326,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.070151462270387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.349217662921267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014731807076781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.651872,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.053490459199488,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002152949767015,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023803254343772,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029687204855716,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.049478674759526,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.004011784439962,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.1538322295613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,109.979963448576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.073824988933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.0957923242009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.198924105825758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.07169285873315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.305659430766774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015055500333962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.29,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.29,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.159834,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.024126815513056,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000971085734073,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01073643290331,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013390382609746,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.022317304349577,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001809511163479,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.3286577828347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,110.531020949644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.2995598299088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.2115143994253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.087370034234781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017666615202466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.134288563570431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003709989192518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.46,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.46,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.213112,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027306318332606,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001099058272672,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01215131165801,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015155006674596,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.02525834445766,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.002047973874945,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.0489383905103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,111.082078450713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.7943863535756,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.3272364746497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.09263552440254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023672923902788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.142487952781011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004971314019586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.83,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.83,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.32907,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.034226412704567,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001377586739034,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015230753653533,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018995659051035,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.031659431751725,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002566980952843,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.8041811230145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,128.855211002827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.622355306982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.0595943105937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.133963744650242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0424023842847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.205733096602028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008904500699787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.67,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.67,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.278926,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.031233939462638,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001257141996823,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013899103060874,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017334836401764,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.02889139400294,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002342545459698,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.454531882609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,130.143763112855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.4908884615657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.3301902536996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.113317153290875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036300479270016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.17416595382465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007623100646703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.85,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.021938,Mm²,,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01589751409775,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000639862692994,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007074393773499,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008823120324251,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.014705200540419,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001192313557331,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.1957908848665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,103.728470789394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.40005092629804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.5776021449971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7829788657726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.80010185259608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.05660646553949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002275595192178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.087021048397954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000477874990357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.009,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.26,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.777232,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002522785898538,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002522785898538,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001914289939811,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.002104003439381,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000418782459157,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.461524680803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.021517514821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.229303607875907,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.068383957560851,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.354608221931294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014360631087779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.77,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.77,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.623666,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002143594153052,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002143594153052,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001626559243336,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001787757523646,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000355836629407,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.7202656785454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,95.9025281271581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.934803831389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.1395309067032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.198324440728245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.059811146106952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.306608016210295,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01256034068246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.44,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.44,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.206844,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001114359415305,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001114359415305,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000845575924334,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000929375752365,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000184983662941,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.958028281706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,96.8657210702024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.256202988193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.3418014247425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.10056244841883,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020036093209045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.155534707689345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004207579573899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.54,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.238184,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001191745485813,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001191745485813,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000904296474635,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000993915735168,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000197829750645,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.8671200390429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,83.7885245742539,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.0380224593452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5955901605933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.101245953087548,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019957085937194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.156759731042235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004190988046811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.006268,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000619088564058,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000619088564058,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000469764402408,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000516319862425,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000102768701634,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.2517370027009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,70.7113280783053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.4626402441054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8493788964441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046502993876146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000443218604395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.072173320743255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.30759069229117E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.98,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.06268,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000758383490972,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000758383490972,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000575461392949,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00063249183147,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000125891659501,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.4237643170119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.6109140092681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.2841217618582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.9282919419463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.060074754266304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005052692090101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.093137369797885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001061065338921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.84,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.84,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.018804,Mm²,,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000650042992261,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000650042992261,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000493252622528,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000542135855546,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000107907136715,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,52.9174715450939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,73.0915260240977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.87700534248145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.4345567485427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3492204650605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7540106849629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.047707360585563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001374413055357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.074078396644145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000288626741625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.6,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.256988,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000988875154512,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000988875154512,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000518368355995,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000470506798517,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000824721878863,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000164153275649,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,83.3286540505522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.659554156839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.164194193779117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022610824677378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.264391981247409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004748273182249,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.319668,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001112484548826,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001112484548826,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000583164400494,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000529320148331,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000927812113721,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000184672435105,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.6503320981818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.8250928057404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.668504789236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.1832694892055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.18709748848724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026156863767026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.30105709004165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005492941391075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.03,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.03,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.07835,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000636588380717,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000636588380717,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000333699629172,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000302888751545,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000530914709518,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000105673671199,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.6363465017938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,82.6401022190856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.607246682727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.354421466008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.104986935470085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006474852008865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.169118461229684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001359718921862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.097154,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000673671199011,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000673671199011,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000353138442522,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000320532756489,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000561841779975,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000111829419036,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.8251576514552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,73.1378333771287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.894239630212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.358945009197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.111308483437008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007105633063922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.179282844390774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001492182943424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.9,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.9,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.037608,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000556242274413,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000556242274413,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000291582200247,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000264660074166,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00046390605686,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,9.2336217552534E-05,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.552432923466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.6355645351717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.239698043668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3634685523861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.080860634986376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002393206311039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.131242618949814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000502573325318,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.87,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.87,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.028206,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000537700865266,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000537700865266,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000281862793572,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000255838071693,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000448442521632,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.92583436341162E-05,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.39019478017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.908187924744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.033096065858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.1007194641962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.079764133302162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002028242348605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.129298121264126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000425930893207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.006268,Mm²,,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000494437577256,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000494437577256,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000259184177998,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000235253399258,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000412360939431,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.20766378244747E-05,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,68.8971885114347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.3491754227871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.2927170613958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.723726537381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9333268387853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.5854341227916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.070551924458264,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00041587663155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.114647328528138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.73340926255062E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.090886,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001058096415328,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001058096415328,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000506087515451,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000552008899876,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000882452410383,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000175644004944,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,53.1188701047327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.7406825591937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.062022685657633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00799651116639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.096763519629475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001679267344942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.94,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.050144,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000929542645241,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000929542645241,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000444600247219,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000484942398022,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000775238566131,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00015430407911,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.0699186512335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,85.3444516360948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.7062763498749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9223348435799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.056321204809575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00427951218284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.087794862323714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000898697558396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.82,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.82,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.012536,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0008108776267,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0008108776267,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00038784276885,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000423034857849,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000676271940667,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000134605686032,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,54.3461425775316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.1965069318648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.606136717848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1012664556916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048537767389619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001080559410898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.075684893060722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000226917476289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.006268,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000791100123609,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000791100123609,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000378383189122,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000412716934487,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00065977750309,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000131322620519,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.6223665038297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,76.2821026479321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.5059970858211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.0192415560657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046774898545545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000478136219397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.07295880835362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000100408606073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.84,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.84,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.018804,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00083065512979,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00083065512979,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000397302348578,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000433352781211,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000692766378245,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000137888751545,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,44.3076831205353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.3676983639995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.3476783432137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9372166564399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041289309430855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001247978200037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.064713761027511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000262075422008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.88,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.88,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.03134,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00087021013597,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00087021013597,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000416221508035,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000453988627936,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000725755253399,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000144454882571,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.6041863482101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.9954991513194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,69.3183632492793,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.7490548217771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.044396389863155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002350358943402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.069529571412825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000493575378114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.79,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.003134,Mm²,,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000781211372064,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000781211372064,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000373653399258,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000407557972806,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000651530284302,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000129681087763,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,42.935655432996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,69.1554010164644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.84625667810181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.2621962581539,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5226342134575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.69251335620363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.037747710567767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000216733026786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.059214220595343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.55139356249759E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.011,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.77,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.77,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.623666,Mm²,,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00270363797693,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00270363797693,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001081455190772,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001622182786158,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00225483407276,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.00044880390417,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,43.9300608212126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.9839707588606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13852813438975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.7736924482431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4766338593607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.27705626877949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.130379991407018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.054872611107296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.202350573946153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011523248332532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.43,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.43,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.51711,Mm²,,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002371783496007,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002371783496007,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000948713398403,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001423070097604,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.00197806743567,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000393716060337,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.3146759187293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,91.2856850299694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13852813438975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,68.8783073964685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1699938562936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.27705626877949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.117741285849079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.047204740585848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.182627533706553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009912995523028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.27,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.153566,Mm²,,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001239574090506,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001239574090506,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000495829636202,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000743744454303,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001033804791482,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000205769299024,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,43.8041867214383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,96.2336257013296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13852813438975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.5823638165862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.2090613972792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.27705626877949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.059617247866902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01477821296445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.092531463508415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003103424722535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.33,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.17237,Mm²,,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001298136645963,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001298136645963,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000519254658385,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000778881987578,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001082645962733,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00021549068323,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,44.1188719708739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,101.18156637269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13852813438975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.0606853957284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.2481289382648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.27705626877949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.062852342140001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017440666595661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.097539196413796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003662539985089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.33,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.17237,Mm²,,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001298136645963,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001298136645963,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000519254658385,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000778881987578,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001082645962733,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00021549068323,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,34.2377551385955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,105.228829027597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13852813438975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,52.0413878106651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.0980540957954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.27705626877949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.04971045675307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018138293259487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.077563530625661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003809041584492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.166102,Mm²,,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001278615794144,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001278615794144,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000511446317657,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000767169476486,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001066365572316,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000212250221828,1e6 dimensionless,Own calculations,,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,33.9734195290695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,104.478649908495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13852813438975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.6395976841857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.940516480784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.27705626877949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048616651439132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017354112707101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.075870816678384,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Bulgaria,bg,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003644363668491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,136.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.995,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.76,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.789515,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03591,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.169575,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,1.3245,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,17.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.71379923471147,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.662208,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.258546153846154,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.098493772893773,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.2319159,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004653830769231,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.021976423076923,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.187329536222377,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.055974182536871,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.059259430088703,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.82843717354438,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.35158638778971,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.67119277331826,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.09305270322216,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.083138948558508,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,WALLS,construction material,concrete,,0,0.25264397964952,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.664217071791973,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.74735602035048,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.25264397964952,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.74735602035048,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.25264397964952,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.74735602035048,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.25264397964952,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,181.34288739238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.479132064343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.727051389025809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.185136815015434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.17096401751433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.076480018282876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,23.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.58362634951159,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.708736,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.341415384615385,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.130063003663004,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.3062496,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006145476923077,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.029020307692308,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.290714340394666,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.073676638178094,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.033861119687208,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.39628920376712,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.7449689880137,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.853150684931507,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.08130662671233,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.660102739726027,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.339897260273973,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.247042979452055,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.752957020547945,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.092854280821918,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.907145719178082,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.660102739726027,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.660102739726027,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.339897260273973,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.247042979452055,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,181.302059767335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.7857307181668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.428142443424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.6546853596747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.959939638602945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.409805785237105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.54609875609122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.169290769881448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,25.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.85209150840051,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,6.232336,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.366992307692308,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.139806593406593,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.3291921,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006605861538462,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.031194346153846,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.318818147741301,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.061252538784786,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.04703823358637,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.900086598964556,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.55333059418558,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.666354663878933,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.705647254082039,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.643966547192354,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.356033452807646,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.243088371166866,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.756911628833134,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.643966547192354,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.643966547192354,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.643966547192354,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.356033452807646,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.731121343784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.4979983425001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.012397446252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7952231152868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.86401368297087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.283558812997904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.45230936210232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.117138145649434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,19.19,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.94391222804484,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,4.461072,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.280469230769231,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.106845421245421,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.2515809,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005048446153846,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.023839884615385,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.234975964966906,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.060955726624892,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.033558722596809,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.47500260552371,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,1.99682396091714,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.328871895257947,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.499815140177176,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.690463783220427,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.309536216779573,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.309536216779573,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.309536216779573,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.690463783220427,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.690463783220427,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.259373267326733,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.05016294945284,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.690463783220427,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.740626732673267,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.690463783220427,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.690463783220427,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.309536216779573,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.309536216779573,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.533545762702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.1031313259168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.507945303039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7631035507362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.680337272733496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.24581903627037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.13491921367686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.10154784388329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,17.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.69078793537814,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.967392,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.256353846153846,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.097658608058608,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.2299494,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004614369230769,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.021790076923077,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.206625010748136,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.055922272413194,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.039735270423501,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.294503990877993,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.33690790193843,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.225168882554162,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.26533136031927,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.661345496009122,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.338654503990878,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.338654503990878,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.338654503990878,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.661345496009122,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.661345496009122,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.265871037628278,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.0727834663626,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.661345496009122,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.734128962371722,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.661345496009122,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.661345496009122,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.338654503990878,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.338654503990878,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.5381342871786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.1038759112573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.401208057240998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.200564882933387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.761788634848282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.082853353139782,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,21.46,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.29214989128933,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.140256,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.313646153846154,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.119484249084249,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.2813406,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005645630769231,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.026659923076923,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.257536238409809,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.067880539388865,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.041505056735733,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.251798695246971,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,0.948322460391426,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.173932898415657,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.231716022367195,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.606710158434296,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.393289841565704,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.606710158434296,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.606710158434296,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.393289841565704,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.393289841565704,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,66.1507043700947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.4315985635001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.6156146878112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2891933665819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.502766834200719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.202688511105623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.946893463073279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.083730623937733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,12.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.86391524600025,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.354704,Mm²,,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.177576923076923,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.067648351648352,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.1592865,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003196384615385,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015094038461539,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.112844001161949,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.039479655321645,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.061079885795569,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.186888888888889,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,0.784109841152263,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.288900969547325,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.511111111111111,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.488888888888889,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.511111111111111,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.511111111111111,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.488888888888889,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.488888888888889,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.2018942021288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.857245125512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.9592456690386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.812627961349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.449696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.234421008275437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.084433198526024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.473369690835193,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0348793543111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.995,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.47,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.892515,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01791,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.084575,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.993,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,11.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.80255178111135,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.525248,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.22978441941263,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.206116624213129,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004136119549427,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019531675650074,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.042510117591337,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.037274301821294,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,190.768292777002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,238.250520849197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.499909725924756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.127659699242669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.798996400707428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.052736221757146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.42,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.36556157146698,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.973376,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.299312211213894,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.268483053458863,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00538761980185,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.025441537953181,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.24,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.05537275907457,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003939452139323,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,204.207296220055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.7857307181668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.034492249227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.6546853596747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.687842532551337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.285231699578027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.08825879426337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.117829215095683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,16.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.48061806813366,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,4.197776,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.312230332086587,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.280070607881669,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005620145977559,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02653957822736,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.26,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012230332086587,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.845588540197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.4979983425001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.626755527853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7952231152868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.621175927316808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.190990405490187,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.01614732698596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.078898136507996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,13.25,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.03266477444471,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.324112,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.261472935840243,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.234541223448698,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004706512845124,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.022225199546421,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.048372493130445,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013100442709798,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.970058978657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.1031313259168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.035506658445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7631035507362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.503158168626205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.183168980078056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.825350292797267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.075667105670245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,11.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.77954048177802,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.830432,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.230938255031841,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.207151614763561,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004156888590573,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019629751677707,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.042723577180891,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018214677850951,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.4843113325175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,69.2943564231811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.25278457811979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.143087767160621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.488132112413805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.059109556614053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,13.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.9973807821336,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.255296,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.254424209659656,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.228218516064712,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004579635773874,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.021626057821071,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.047068478787036,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00735573087262,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.0731317194181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.4315985635001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.2566342043813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2891933665819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.326849992115217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.128361525077368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.601740151312695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.053026146009461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,6.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.952667792400127,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.217744,Mm²,,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.129547553534662,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.116204155520592,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002331855963624,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011011542050446,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.023966297403913,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.03558125613075,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.3538452339803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.4600490782582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.402317312718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.0616462742285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.117101937484312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.044399006004755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.238557825404157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018341229380564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.654977488192616,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.105220742257204,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.587514806908777,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011789594787467,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.055673086496372,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.3315,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.470728,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.225622414972794,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.4400418176,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028761734433523,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025799275786871,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000517711219803,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002444747426849,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.014557011708942,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.005320920870202,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00888380185438,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,162.698356538961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.193977481509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.056239663954425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022245579875328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.092099511507306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009189649046498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.169076,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.332755047418373,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.6489875392,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.042103173401491,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.037766546541137,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000757857121227,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003578769739127,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.021309437704659,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.007789087079276,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013004648617557,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.818590485099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.7857307181668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.87273765684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.6546853596747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.074332405844584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046588044728457,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.125076206121509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019245521277326,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.836051,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.435074789904053,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.8485464592,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.05476197560572,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049121492118331,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000985715560903,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004654767926486,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.027716364669861,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.010130965487058,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016914645448801,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.4972360455724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.4979983425001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.021998097315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7952231152868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.077035823239425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038607165394216,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.138366826026726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015948620024351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.962627,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.147675320289011,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.2880179984,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.018996294928988,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017039676551302,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000341933308722,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001614685068964,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.00961448581437,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003514314561863,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005867494552755,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.869606350007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.1031313259168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.718351370524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7631035507362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.028713365227187,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015870693590063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.05016919483745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006556183522055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.276622,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.195844873183484,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.3819653024,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025415591122005,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022797785236439,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000457480640196,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00216032524537,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.012863447383808,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.004701884357571,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007850259380626,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.3132767575604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.3076513425171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.031899104168801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019309618550542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.058815276790591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007976803423229,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.030646,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.464927348529191,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.9067692832,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.059221944186498,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053122083935288,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001065994995357,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005033865255852,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.029973662991072,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.010956059674502,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018292221520924,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.301177819361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.4315985635001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.5722409786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2891933665819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.063168444762922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035755362364855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.123940435441181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014770540192922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.302339,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.353198745972096,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.6888598288,Mm²,,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.048029369542261,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.043082344479408,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000864528651761,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004082496411092,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.024308829372434,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008885433365318,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014835106804509,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,42.1793999415567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2270409930956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,52.6778525870102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5522906342478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.045472773085213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024266493427635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.091014313024235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010024488434956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.345022511807384,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.1785,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.469272,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.685625038627327,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.6969181824,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.044016995001797,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039483244516612,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000792305910032,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003741444575153,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.022772524513436,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.008143144075333,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013101326413029,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,162.698356538961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.193977481509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.170901999146628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035231535897437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.279873483059599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014554147479231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,5.770924,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.885309730626233,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.0863724608,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.056836713644583,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050982532139191,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001023060845603,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00483112065979,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.029404902690007,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.010514792024248,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016917018930328,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,136.818590485099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,71.7857307181668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.87273765684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.6546853596747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.197764700207024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.077986040930621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.332770857146344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03221603350844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,6.103949,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.936398650362796,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.1860135408,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.06011661242015,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053924601340874,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001082099023563,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005109912055713,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.03110178307144,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.011121573297728,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017893256050982,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.4972360455724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.4979983425001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.021998097315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7952231152868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.165801932414637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.053961242113501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.297802842529632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022291389117087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,4.977373,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.763572133311111,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.8489420016,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.049021183419376,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04397200152718,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000882381301549,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004166800590647,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.025361479152536,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.009068918932585,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014590785334255,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.869606350007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.1031313259168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.718351370524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7631035507362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.148465738880105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046779362602252,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.259405559802147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01932455469099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,4.663378,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.715402580416638,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.7549946976,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.045928707430985,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041198050565593,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000826716733758,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003903940131634,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.023761563364328,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.008496810874732,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013670333191925,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,76.3132767575604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.5533314916668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.3076513425171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8835812392075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.116524374952408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038167497222224,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.214846577803886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015766993102501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,5.409354,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.829841760626537,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.9781907168,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.053275680688254,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.047788285577364,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000958962252389,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004528432858502,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.027562575418738,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.009856000927327,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015857104342189,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,49.301177819361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.4315985635001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.5722409786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2891933665819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.112748397322581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0385716236634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.221219400159403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015933937735351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.637661,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.558048707628026,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.4481001712,Mm²,,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03582661920224,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.032136477424409,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00064487914564,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00304526263219,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.018535171789515,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006627924552414,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010663522860311,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,42.1793999415567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2270409930956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.28,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,52.6778525870102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5522906342478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.45,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.071846297705911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015785243099876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.143801246006801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006520883924559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.118,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,4.06041584935269,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.06041584935269,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.94,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.056119302028364,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.014696750902527,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027283206500606,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028515813560544,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.04729466712846,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.008824634899904,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,117.097309144844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.35543360132032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.816936808714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.53315040198048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.485027809895174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.567166382615291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.802296352542443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.180149914784587,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.60062769713613,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.60062769713613,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,8.18,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.09728624031187,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.023891095066185,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046888064174427,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.050299323678427,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.083623389628175,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.013662850683695,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.56125112837913E-17,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,117.796338861272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,111.245555312617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.15687044159687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.872471680521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.373666593785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.2353056623953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.791766475684885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.909988642457203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.26542501129642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.272996592737161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,5.55119654766575,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,5.55119654766575,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,6.62,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.091764649581739,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02009265944645,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044093123431852,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.047527201559723,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.077766700549854,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.013997949031884,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.229670605054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,115.535589281132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.16179595919611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,158.896802613631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.6606767843397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24269393879417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.596151138440225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.764845601041095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.970068213502084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.229453680312329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.02157708905453,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.02157708905453,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.08,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.081936125319937,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.018175691937425,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039368633614955,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042442937606621,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.069489868541573,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.012446256778364,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.956093091064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.278167796081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.15910783390326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.993700567506,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4834503388242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.23866175085489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.542908815943341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.65833126020017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.88968389081013,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.197499378060051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.96273048254217,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.96273048254217,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,6.02,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.078378612968662,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.017962695547533,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.037685144306213,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.040559029318186,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.066543258130914,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.011835354837748,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.186252674686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,100.901392251978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.16898644138167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.851241538775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.2704176755934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.2534796620725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.542700578586995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.607426381356908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.889370232715073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.182227914407072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.90388387602982,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.90388387602982,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.96,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.076459678443106,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.017749699157641,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.036662088922254,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.039686874766754,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.065325094306989,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.011134584136116,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.560633918214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,107.507832456324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13508968402802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.456557216504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.252349736897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20263452604202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.557550625746579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.640746681439688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.911796742558581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.192224004431906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.50058846606512,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.50058846606512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.208656,Mm²,,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023198921740344,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005431407942238,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011170885523926,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011996403429533,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.020068850877809,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003130070862535,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.612443939971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.3414219008456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.12748350746467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.554790349356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.4024265702537,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.19122526119701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.173678000190836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019058935728143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.332221855516032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005717680718443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.480580619850922,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.480580619850922,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.65,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007023870597821,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001739470517449,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003430458399976,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003593412197845,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.006296899990947,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000726970606874,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,135.360603452115,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.394511212693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.066080046878518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074627155607275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.169770587144881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032388146682183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.57944291879168,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.57944291879168,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.28,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037699550351571,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.009336341756919,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018412460391707,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019287089959864,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.033797646890183,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003901903461388,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,135.225378074041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,106.774238022717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.190320891801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.032271406815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.354325731183641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.350219500714511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.604976658214602,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.105065850214353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.05923891722244,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.05923891722244,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.24,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01548118417479,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003833935018051,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007561010350967,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007920173823822,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.013878881612699,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001602302562091,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,126.972185985015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,107.845071468561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.728000837372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.3535214405682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.136760479374734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.133727888621015,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.276485657870102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.040118366586305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.00039231071008,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.00039231071008,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.18,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014621118387301,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003620938628159,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007140954220358,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007480164166943,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.013107832634216,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001513285753086,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.482114442786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,99.2176865414771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.497992808606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.7653059624431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.129672803473193,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.117076870118943,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.265784526480205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035123061035683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.02981561396626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.02981561396626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.21,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015051151281045,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003727436823105,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007350982285663,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007700168995383,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.013493357123457,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001557794157588,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,128.76981256847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,90.5903016143935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.44241697839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.177090484318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.134812801093604,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109614264953416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.273545293276311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032884279486025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.17693213024716,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.17693213024716,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.36,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017201315749766,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004259927797834,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008401122612186,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00880019313758,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015420979569665,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001780336180101,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.397767927011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,82.437174469098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,198.410629569786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.7311523407294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.157164697776725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.112114557277973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.307293509214249,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.033634367183392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.617889368379757,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.617889368379757,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.024192,Mm²,,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009030690768627,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002236462093863,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004410589371398,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00462010139723,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.008096014274074,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000934676494553,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.570648472826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,81.5378951649903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.13983695061372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.631679193967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4613685494971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20975542592058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.080146729910521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001972564759831,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.191008340339868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000591769427949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.039231071008239,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.039231071008239,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.04,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000573377191659,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001666666666667,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000255152850288,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000318224341371,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000530373902284,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,4.30032893744153E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,142.104548108092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,214.577867643219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00563449822769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004592440345063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00850749647771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001377732103519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.098077677520596,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.098077677520596,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.26,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001433442979147,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004166666666667,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00063788212572,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000795560853427,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001325934755711,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000107508223436,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,141.962585522569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,143.513760783221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,214.363504139079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.0541282349664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014072322208543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.037313577803638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021247716919643,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011194073341091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.201059238917222,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.201059238917222,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.365,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002938558107252,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.008541666666667,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001307658357727,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001630899749525,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002718166249208,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000220391858044,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,133.29820236861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,144.948898391054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.2802855766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.4846695173161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027106206244891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052906347912735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040927317718509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01587190437382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.181443703413103,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.181443703413103,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.345,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002651869511422,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007708333333333,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001180081932583,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001471787578839,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002452979298066,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000198890213357,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,133.833536514668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,156.545914214344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.088640137149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.9637742643032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.024558831328584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.054008340403949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.037081079517938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016202502121185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.176539819537073,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.176539819537073,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.34,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002580197362465,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0075,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001148187826297,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001432009536168,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00238668256028,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000193514802185,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,135.185390418857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,168.142930037634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.129939532474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.4428790112903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.024133735174801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.057168596212796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.036439258806487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017150578863839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.362887406826206,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.362887406826206,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.53,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005303739022845,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.015416666666667,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002360163865166,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002943575157679,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004905958596131,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000397780426713,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,137.944275937609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,169.824359338011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,208.29585666579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.9473078014032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.050609398226498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.090006910449146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.076414679745562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027002073134744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.117693213024716,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.117693213024716,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.018144,Mm²,,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001720131574977,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000765458550865,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000954673024112,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001591121706853,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000129009868123,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,133.926481492824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.51881171573529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.228987054165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.27821757360293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01594099174679,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002083130940521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.024069109999345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000624939282156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.79442918791683,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.79442918791683,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.97,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001327868852459,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001327868852459,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001007586885246,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001107442622951,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000220426229508,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.8496666028294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.202996570272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.076577858072805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.11136667836778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.115604411961583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.033410003510334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.245194193801491,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.245194193801491,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.41,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000409836065574,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000409836065574,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000310983606557,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000341803278689,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,6.80327868852459E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.7569096931363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,125.143999402969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.062933636636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.5431998208907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023612397924804,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.051309039755217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.035646031444123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015392711926565,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.357983522950176,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.357983522950176,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.525,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000598360655738,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000598360655738,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000454036065574,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000499032786885,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,9.9327868852459E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.0956898527101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,126.391465169777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.514491677592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.9174395509331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032447477547542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.066355519214133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.048983004540185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01990665576424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.308944684189878,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.308944684189878,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.475,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000516393442623,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000516393442623,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000391839344262,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000430672131148,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,8.57213114754098E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.4454717396688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,109.329886916664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.0426623269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.7989660749992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.028110680864124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.051931696285416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.042436179432691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015579508885625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.333464103570027,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.333464103570027,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.5,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00055737704918,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00055737704918,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000422937704918,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000464852459016,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,9.25245901639345E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,88.3287593329988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.2683086635511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.376426592828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.6804925990653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.030636231987416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046134154331776,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.046248892686629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013840246299533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.27461749705767,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.27461749705767,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.44,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000459016393443,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000459016393443,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000348301639344,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000382819672131,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.61967213114754E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.1313870744886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,105.185871876448,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.098394482478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.5557615629345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025724871225779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046281783625637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.038834823397915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013884535087691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.078462142016477,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.078462142016477,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.012096,Mm²,,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000131147540984,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000131147540984,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.95147540983606E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00010937704918,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.17704918032787E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.5062010431928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,95.381453320541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.54389400338234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.134363575221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6144359961623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.31584100507351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007143985488158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001153734059365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010784637471973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00034612021781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.25500196155355,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.25500196155355,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.42,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001824561403509,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001824561403509,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000956435087719,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000868126315789,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001521684210526,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000302877192982,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,124.401693386151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.846557013089,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032170222462288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.048220623623162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.048572560451773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014466187086949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.098077677520596,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.098077677520596,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.26,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000701754385965,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000701754385965,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000367859649123,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000333894736842,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000585263157895,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00011649122807,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,124.277415970181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,106.774238022717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.658898114974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.032271406815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012360973645169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027761301885906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01866334887102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008328390565772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.196155355041193,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.196155355041193,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.36,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00140350877193,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00140350877193,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000735719298246,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000667789473684,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001170526315789,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00023298245614,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,116.692409361673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,107.845071468561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.205538136126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.3535214405682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023234107626056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038824225728682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.035080059848974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011647267718605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.176539819537073,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.176539819537073,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.34,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001263157894737,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001263157894737,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000662147368421,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000601010526316,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001053473684211,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000209684210526,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.161053575977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,95.4421706808724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.913190899725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6326512042617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.020993431228471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032450338031497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.031696982755257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009735101409449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.186347587289133,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.186347587289133,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.35,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001333333333333,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001333333333333,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000698933333333,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0006344,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001112,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000221333333333,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,118.344498561592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.039269893184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.700192828005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9117809679552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022380265081145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029063744462614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.033790929739476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008719123338784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.147116516280894,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.147116516280894,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.31,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001052631578947,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001052631578947,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000551789473684,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000500842105263,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000877894736842,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000174736842105,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.759692409788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.8343749792979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.34713553878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.1503124937894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018023945232309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029088656243582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027213575301009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008726596873075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.058846606512358,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.058846606512358,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.009072,Mm²,,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000421052631579,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000421052631579,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000220715789474,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000200336842105,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000351157894737,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,6.98947368421053E-05,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.242419815328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,86.5498372723428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.75507131596078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.036053921146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.9649511817028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63260697394117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007002598536561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000785180123735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010572890990296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00023555403712,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.029,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.71635935661044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.71635935661044,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.91,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.044517543859649,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.044517543859649,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02129274122807,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023224802631579,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.037127631578947,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.007389912280702,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.400025005943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.114037758975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.177572580093997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.219289026476762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.268099258957791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.065786707943029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.138093369949,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.138093369949,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.34,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.055456140350877,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.055456140350877,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026524671929825,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028931468421053,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.046250421052632,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.009205719298246,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.298726279664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,111.36667836778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.961076682292,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.4100035103339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.220988113639194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.260598027380605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.333648031809219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.078179408214181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.70694389956846,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.70694389956846,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.92,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.07021052631579,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.07021052631579,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.033581694736842,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036628831578947,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.058555578947368,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.011654947368421,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.1161749104824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,112.481669893865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.625424114828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.7445009681594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.263047296637965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.328446476090085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.39714568645119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.098533942827026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.38328756375049,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.38328756375049,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.59,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.061815789473684,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.061815789473684,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029566492105263,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.032249297368421,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.051554368421053,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.010261421052632,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.4981675808056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,99.5433523832544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.202233047017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.8630057149763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.232506387811877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.257817282672629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.351035577669378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.077345184801789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.22636327971754,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.22636327971754,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.43,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.057745614035088,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.057745614035088,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027619727192983,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030125886842105,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.048159842105263,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.009585771929825,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,96.4627955361673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.605034872644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.658821259613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.9815104617932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.219344937498308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.210450234740525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.331165018505868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.063135070422158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.98116908591605,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.98116908591605,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.18,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.051385964912281,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.051385964912281,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.024577907017544,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026808057894737,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.042855894736842,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.008530070175439,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,98.4314240164973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.8636894060877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.631450264911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.3591068218263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.199088191942646,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.213342842905271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.300582380857411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.064002852871581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.451157316594743,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.451157316594743,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.093744,Mm²,,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011701754385965,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.011701754385965,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005596949122807,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006104805263158,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.009759263157895,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00194249122807,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.5644893364051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,90.2480764925258,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.05883365910784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.302378897972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.0744229477577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.08825048866176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.044043476439718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008460215682715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.066496360845284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002538064704815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.774813652412711,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.774813652412711,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.95,Mm²,,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000852080123267,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000852080123267,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000340832049307,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00051124807396,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000710634822804,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000141445300462,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.733250955317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.16758347684528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,244.217208942529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.25137521526793,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.126992604159875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109070458195248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.191742037548705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032721137458575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,1.44174185955277,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.44174185955277,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.63,Mm²,,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001585516178737,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001585516178737,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000634206471495,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000951309707242,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001322320493066,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00026319568567,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,113.253173700279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.811008626577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.16758347684528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.012292287421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.4433025879731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.25137521526793,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.166406937083535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.187141944061321,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.251243224037811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.056142583218396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,1.02981561396626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.02981561396626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.21,Mm²,,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00113251155624,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00113251155624,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000453004622496,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000679506933744,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000944514637904,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000187996918336,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,108.090277955921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,123.42183427357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.17758890199723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.216319713441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.0265502820711,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.26638335299585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.113555571009037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.14934041947102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.171446487073125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044802125841306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,0.970969007453903,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.970969007453903,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.15,Mm²,,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00106779661017,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00106779661017,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000427118644068,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000640677966102,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000890542372881,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000177254237288,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,108.090277955921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,132.032659920564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.17758890199723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.216319713441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.6097979761691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.26638335299585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.107066681237092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.151837558908648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.161649544954661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045551267672595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,1.01020007846214,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.01020007846214,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.19,Mm²,,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00111093990755,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00111093990755,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00044437596302,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00066656394453,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000926523882897,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000184416024653,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,108.090277955921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,137.313966317386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.17758890199723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.216319713441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.1941898952159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.26638335299585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.111392607751722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.16340361991769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.168180839700303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.049021085975307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.961161239701844,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.961161239701844,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.14,Mm²,,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001057010785824,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001057010785824,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00042280431433,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000634206471495,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000881546995378,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000175463790447,1e6 dimensionless,Own calculations,,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,109.085966557239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,137.313966317386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.17478442330873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.719809501432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.1941898952159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.26217663496309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.106939521342622,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.15653792160182,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.161457774042435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Croatia,hr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.046961376480546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,35.9461555555556,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.29,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.32076,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0506,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.06864,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.309375,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,2.82215555555556,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.82791548720734,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.9659763,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.034544680098691,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.022768084610501,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025183071791946,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003972638211349,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005388970095396,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.028140279668117,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.004533251263694,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002742494565801,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,3.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.88297786561887,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.787750891753349,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.212249108246651,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.787750891753349,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.212249108246651,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.2313668176387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.5096255139445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,59.2640376583156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7774685756192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.149449388853939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.158708281096235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.161667827838963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034931692669281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,11.579,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.51974018431,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,10.5754095,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.14173309833164,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.093414996627672,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.103323428683766,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016299306308139,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.022110363339736,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.126846281117046,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.02063647372033,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0137396961027,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.61121780879178,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,2.04379484940668,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.37041799810001,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.775541929354866,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.224458070645133,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.775541929354866,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.224458070645133,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.8162251518151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.0665831859807,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.8103708459035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9000549592344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.611137600841978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.571776257457561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.471079493104114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.125847954266409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.229,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.03453507281,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.7101895,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.076246262156299,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.050253218239379,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.055583525111942,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008768320147974,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011894416896383,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.068511112272195,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.011124319945553,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007273317356883,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.892567025204688,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.86162755289388,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.35895656406101,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.10582436988281,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.743297479531225,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.256702520468775,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.743297479531225,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.256702520468775,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,52.7816805809759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.8168248645447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.6798205388904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.8450831526863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.324012611505801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.307304268264862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.35043811315754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.067637669445096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.589,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.67690019321,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.7781695,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.031690732496815,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.020887073691082,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023102543990178,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003644434237134,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004943754269503,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.026836382703999,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004335830364298,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002701461652779,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.812313634607957,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.52580765846273,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,1.02378321062959,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.986786404016995,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.6690947581792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.5377141071909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.6495867517382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.2238508749927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.136159585369396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.154293183432317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.147281085555676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.033959929673453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.209,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.43077347501,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.4720795,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027039331048847,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.017821377282194,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019711672334609,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003109523070617,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00421813564362,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.022047732399369,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.003537314875324,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002050225188779,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.772711634223631,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.36831384385106,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.857762225418289,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.913055681303757,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.7629734050821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.5942803560302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.5665773370737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.9157011063622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.113447559335639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.122601003785395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.122683616625987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026984480933165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.989,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.52678850921,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,6.3223695,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.085549065052236,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.056384611057155,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.06236526842308,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009838142481007,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013345654148149,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.077752795541485,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.012669248018188,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008556456582422,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.752287880955788,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,3.20322297452683,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.754061362668193,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.891954499928459,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,52.0366966049559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.5819765772451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.8657020498958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.3531930446516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.360172990248561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.326120315461689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.389509708807628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.071779081433118,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,3.529,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.28573996981,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.5353395,Mm²,,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.043196830815473,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.028470638492016,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.03149048966448,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004967635543779,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006738705607214,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.038510549616046,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006288227942179,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004328003240048,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.730848682346274,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.12256534787475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.671836109138708,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.876052706149051,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.830263530745254,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.169736469254746,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.830263530745254,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.169736469254746,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.169736469254746,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,0.169736469254746,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,52.6026143676547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.7036715350615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.4841369809731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.159878104867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.18315796817665,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.179254692772929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.198091183727443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039453957879322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.28,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.20412,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0322,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.04368,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.22315555555556,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.43898967409734,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.1371168,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028009647877855,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020419033302957,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003221109505953,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004369505068945,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.022007580475458,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003585234928365,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002416832474032,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,3.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,56.5605281240761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.5009193785657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.8093451339904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7755523552223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.121028879487593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.114337713619378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.13096020477942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025165730767625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.8542765912,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,8.13555,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.130102619142693,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.094844809355023,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01496180120141,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02029600858626,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.102223486469259,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.016653135250265,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01122599742317,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.0686567053211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.1481959922706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.3646280475749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.1381179378988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.49420910104119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.448660905904917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.344819986097813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.098750265389672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.9979073697,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,4.07583,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.067289467714007,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049054021963511,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007738288787111,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010497156963385,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.052870296061006,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.008613051867393,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005806119785609,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.3443506990666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.5419378565734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.66590644394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7845805222318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.254465951571393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.218227836573958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.275372656757218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.048031946829928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.99,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.2879743801,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.94931,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.026411054486083,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019253658720354,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0030372712659,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004120124499829,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.020751542810494,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003380614974219,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002278896701371,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.6200446928121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.2190347494021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.9671848403051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.3738095483434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.109694841344559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109588326627357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.118710722861334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024120390690681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.0418476619,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.64322,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.020209752052634,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014732909246371,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002324121486053,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003152721320211,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.015879090898498,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002586848262737,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001743812891399,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,56.4199649553317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.7231634494818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.6557377031865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.723968275231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.087487308573192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.080062876643458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.094664564168785,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017621839149225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.39,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.4901608061,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,4.68801,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.080175154092666,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.058447687333553,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009220142720657,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012507324038456,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.062994763929952,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.010262419723861,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006917970438853,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.4037476615819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.5419378565734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.6380154445767,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7845805222318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.292961849405608,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.251005140090995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.316996507670448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.055246231334028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.8968141567,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.70648,Mm²,,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.042436931293867,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.030936522913229,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004880247098795,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006620161281843,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.033343303159467,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005431927205615,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003661700928785,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.685,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.91,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.3875303678322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.3295445753301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.620293185967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.2976327610302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.159198565863055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.138922385802239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.172258658455147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030576817115073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.106838545862765,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.030762818776459,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.077885299933956,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012286432774218,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016666813154591,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.089375,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.518692460927778,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.335005706271673,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.417806777277325,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.006535032220836,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004764038488989,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000751528705396,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00101946502645,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.005466833154837,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000836484124267,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000231714941731,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,3.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.586812730508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.5419378565734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.8172689518991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7845805222318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.024520128973801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022370184505038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.0264922531428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004923677609559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.802764032,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.518999399750421,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.646626427776,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011630479188948,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008478619328743,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001337505106729,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001814354753476,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.009729391851209,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001488701336185,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000412386001553,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,42.578504739932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.329421585179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,46.5297899797976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.0775056908979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.036411501092855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032544334091657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.039321012722022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007163007933574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.6162919648,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.398221089392773,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.4964231776464,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.008956794442292,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006529503148431,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001030031360864,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001397259932998,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.007492740534939,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001146469688613,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00031758421874,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.5701967493559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.6127766137049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,43.2423110076962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0202721326765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.026746172589399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027111048106668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.028867795073673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005967141688278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.397809154,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.256709359905101,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.320435273547,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005279678010732,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003848885269824,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000607162971234,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000823629769674,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.004416675820497,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000675798785374,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000187203404861,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.5432343743401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.2742281672906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,44.3056465242788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7256576196207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017500764960539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017070941875791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018892187608199,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003757314306862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.5440750661,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.351446067614845,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.43825246574355,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.006829578996212,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004978763088239,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000785401584564,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001065414323409,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.005713234094093,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000874186111515,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000242158790604,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.2458508743612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.9356797208762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,42.8878658355019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.4310431065649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023493658388556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022760939697741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.025355681730557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005009682827473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.3612762632,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.233046937486778,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.2910080300076,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.00537391095957,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003917581089527,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000617999760351,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000838330109693,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00449550570099,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000687860602825,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000190544655755,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,37.3159929181426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.9752277995217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.7789170609463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.89904763867472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015137933641708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013088152441082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016331450854308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002880702352282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.0524662253,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.033030092287976,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.04226154447915,Mm²,,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000759899521606,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0002,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000553966751251,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.73884449846536E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00011854432537,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.000635688357559,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,9.72671387655275E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,2.69440252810163E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.685,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,34.0887514619451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.6422224399246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,37.2521875976137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4860531590274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002061427403869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00201343390273,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002222044359203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000443156801991,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,4.89962483367222,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.053161454137235,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.040625,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Area,Constructed area [Mm²],,1,0.080307539072222,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Area,Heated area [Mm²],,0,0.051062963838327,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Area,Cooled area [Mm²],,0,0.411052722722675,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000871345398922,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.0002,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000635210795814,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000100204720876,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000135929882232,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.000665866037821,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000111532211062,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,9.39471500381312E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Construction features (U-values),Walls ,,1,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Construction features (U-values),Roof,,1,3.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,BUILDING,Construction features (U-values),Floor ,,1,1.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.586812730508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.5419378565734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.8172689518991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7845805222318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00375968119162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022008559335793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004061613829972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Berfore 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004844083909808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,1.796235968,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.16247305035958,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.793233072224,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.019489352608435,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014207738051549,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00224127554997,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003040339006916,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.014893402796579,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.00249463713388,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002101312677977,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,42.578504739932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.329421585179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,46.5297899797976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.0775056908979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.081523251594219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.090252383292448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.088038127438412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019864549562668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,0.9827080352,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.635549470717227,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.1379363223536,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010662487418332,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007772953327964,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001226186053108,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00166334803726,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.008148075676251,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001364798389547,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001149613352534,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.5701967493559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.6127766137049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,43.2423110076962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0202721326765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.042670501867846,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062145862173318,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.046055613197204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013678304264347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,0.201190846,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.129359310204899,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.508424226453,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.002182942224261,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.0005,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001591364881486,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00025103835579,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000340538986985,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.001668164073008,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000279416604705,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000235361546547,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.5432343743401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.2742281672906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,44.3056465242788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7256576196207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00883187761632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027085908245835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009533814623794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005961608404908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.0549249339,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.034622602495155,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.39060703425645,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000595941414626,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000434441291262,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.85332626819948E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,9.29668606816625E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.000455407406778,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,7.62805010721333E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,6.42535067759607E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.91,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.2458508743612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.9356797208762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,42.8878658355019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.4310431065649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002338105065844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020286441827864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002522959796411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004465045846313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,1.2377237368,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.800723622623223,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.3433514699924,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013429435089859,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009790058180507,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001544385035334,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002094991874018,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.010262525910543,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001718967691502,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001447941487814,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,37.3159929181426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.9752277995217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.7789170609463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.89904763867472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.051948411258342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.060417538377731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.056045373276466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013297900196939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.5465337747,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.353038577822024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.78659795552085,Mm²,,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005929949982801,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004322933537462,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000681944248022,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000925072197317,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00453155809902,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000759033597798,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000639358285982,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,34.0887514619451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.6422224399246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,37.2521875976137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4860531590274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.8998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.021779341538755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.037475274767714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.023480838365296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008248307976374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.0424,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.80161676065698,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.583160480394949,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.68,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.128457484634435,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.020494827566585,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053875933027418,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.074401542239199,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.108634877720555,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.01982260691388,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,24.5003698349713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.00998058922432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.9008136369369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.37057942457777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022847642939218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.091337469786661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.149651325889766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.054527373412999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.583160480394949,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.220490775657458,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.208,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.036788243053843,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003143865950148,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015093668068068,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021667109386929,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.030907892916937,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.005880350136906,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.6446956754456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,189.241756658826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.53187088474226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.4183304859803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,79.4815377967067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.8637831378268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018180941532304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.090533554613762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109859248041739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016532159861715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.220490775657458,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.220490775657458,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.208,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.022561804693959,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001188683844697,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009153174814655,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013402139048692,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.018916896021538,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.003644908672422,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,27.5308272669316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,189.943226883348,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.79601156591053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.5678199872494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,79.7761552910063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.26377225986517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007789242095779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027795266069886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109176731164304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016593440300529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.779117947403399,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.779117947403399,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.7496,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028941318159128,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004200288716979,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012082868606255,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016847738598892,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.024445486480398,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.00449583167873,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,26.4208378310869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,178.27220882581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.27582334103115,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.1258432283912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,74.8743277068401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.83237274149301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027811909381575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.09401494845633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.146947465735653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.056125796049047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.588856863191874,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.588856863191874,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.656,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.030365613957062,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003174575616726,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012607377870261,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017750982537344,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.02557384901994,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.004791764937122,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,26.4647291448478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,148.933937865381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.57502625253251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.2224041186652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.5522539034601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.90952782768446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018866829860736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.068735516560919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.131764528276362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.04103427856067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.41660584258996,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.41660584258996,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.26,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.039207565403852,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.007637038213363,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016965726582083,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02223725478827,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.03379890009865,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005408665305202,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.8361750670327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,158.90202897338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07247353227687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.8395851474719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,66.7388521688195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.25682194421348,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.040952160507162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.252651319459574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.179132921404746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.150829805901532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.47499186746416,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.47499186746416,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.465,Mm²,,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023014578992784,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002560720091503,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009627076770008,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013382816556989,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.019487304237336,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003527274755448,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,13.99,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,102.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.24722497602503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.1256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.50205847458653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.008662533548726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033590966652596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.110757740859089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020053404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.006,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.23805230133865,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.23805230133865,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.32,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015154416492387,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.006674441436849,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007401417014882,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007752999477505,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.013585934385425,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001568482106962,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,27.7363736374361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.0200220023594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.036728497070803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.17730214723293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.152078759477434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.105847254272292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.193715455235925,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.193715455235925,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.22,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002371179865732,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001044335897592,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001158084246424,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001213095619309,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.002125762749629,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000245417116103,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,28.0252941961594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,177.557623508715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.6556472315506,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,74.5742018736603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005802799527188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027481832821104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.106339950689416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016406324412205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.07029382796924,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.07029382796924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.09,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000860433718946,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000378959788407,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000420235828333,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000440197890613,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.000771378829035,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,8.90548899108744E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,28.4586750342443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,179.333199743802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.6090850753374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,75.319943892397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002136134870891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011354993651993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.098544837859227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006778794950316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.231691340548752,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.231691340548752,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.26,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002836024833974,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001249067008111,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001385114528913,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001450910305061,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.002542496263658,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000293528570316,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,28.8920558723292,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,164.985883626605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.5625229191243,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,69.2940711231743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007141198749376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030178929043842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109200875312486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018016458492025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.250679283205165,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.250679283205165,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.28,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003068447318095,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00135143256337,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001498629670158,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001569817647937,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.002750863020672,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000317584297423,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,27.3658755091909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,138.588142246349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.20492612022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,58.2070197434664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007343863994657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027300323504276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109604962019232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016297965528171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.981715075477072,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.981715075477072,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.05,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012016712956753,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00529250644085,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005868962608078,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006147750348675,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.010772983165729,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001243729791024,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.8396951460526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,126.115209444177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.8473293213157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.9683879665544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027261908476372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.093162353958341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.171816251813452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.055616807364882,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.336125025159024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.336125025159024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.37,Mm²,,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00411434849664,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001812077562036,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002009447805759,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002104900690881,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.003688513427237,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000425835069402,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,15.479343816775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,135.58710452005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.92997973963071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.054556396905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,56.9465838984211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.04577852400855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005851709318398,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035294237141142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.106134225983541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021070236042416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.497522537738536,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.497522537738536,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.54,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006089939611668,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004425945037897,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002710023127192,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003379916484476,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005633194140793,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000456745470875,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.9688596311289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.1314911884835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014680475045238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.072532696595289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.030290209506227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043301149475029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.07029382796924,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.07029382796924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.09,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000860433718946,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000625331709613,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000382893004931,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000477540714015,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000795901190025,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,6.45325289209235E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,26.1897988819173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,192.831397573981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.617557540218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.989186981072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002089701600791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01220967059354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004313802284395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007289026828296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.04181191398462,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.04181191398462,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000511799992764,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000371957487728,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00022775099678,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000284048995984,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000473414993307,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.8384999457312E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,26.5212077580999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,194.759711549721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.3466570678197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,81.7990788508827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00125684539347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004110589099825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002596404918685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002453972365526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.117763684610272,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.117763684610272,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.14,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001441489929248,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001047622079423,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000641463018515,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000800026910733,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001333378184555,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000108111744694,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,26.8526166342825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,225.921265397676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,59.0757565954214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,94.886931467024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003578945872777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022251988993721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007398662532103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013284170405383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.051305885312826,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.051305885312826,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.07,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000628011234825,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00045641556169,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000279464999497,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000348546235328,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000580910392213,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,4.71008426118492E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,26.2407848628684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,262.068667861304,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.7297266983106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,110.068840501748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001527842117185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012906153616358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003154302280726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007704818835122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.313088853128264,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.313088853128264,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.43,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003832373538904,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002785228709884,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001705406224812,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002126967314092,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.003544945523486,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000287428015418,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.6289530914544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,264.689354539917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.3836968011997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,111.169528906765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.009131940626225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.080073464508347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018827376128319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.047802897429909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.032317942656413,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.032317942656413,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.02,Mm²,,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000395588750704,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000287499413766,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000176036994063,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000219551756641,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000365919594401,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.96691563027748E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,20.2244391106305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.53829618932296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,44.493766043387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.75059396068234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000767962716783,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002686396170196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001559158460107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001603746276853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.896269333523213,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.896269333523213,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.96,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0007463074951,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.0007463074951,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000566298127282,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000622420450914,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000123887044187,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,18.5588970662256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.8295735456963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.019632058506389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.128947016169403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03977248016387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.07697982128894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.136751627266686,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.136751627266686,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.16,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000113870641981,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000113870641981,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.64050431352648E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,9.49681154122442E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.89025265688639E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,18.8988036059001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,208.105171639247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.5773679329802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,87.4041720884837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003041917121143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023425374604108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006170696195422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013984667534157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.032317942656413,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.032317942656413,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.02,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.69105746772412E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,2.69105746772412E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.04197440650906E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,2.24434192808192E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.46715539642204E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,19.2387101455745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,210.192371696894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,42.325162320264,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,88.2807961126956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000729868687161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002957540054832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001482462114036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001765615922254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.05333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.05333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.06,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,4.44069402187792E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,4.44069402187792E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.36959862380096E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,3.70353881424618E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,7.37155207631734E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,19.9185232249234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,125.183463922629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,43.8207510948316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.5770548475041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00124065959741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005284232331052,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002526069694942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00315462329085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.036115531187696,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.036115531187696,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.054,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,3.00727589428363E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,3.00727589428363E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.28192094858242E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,2.50806809583255E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,4.99207798451083E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,19.3406821074769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.1745561483634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,42.5495006364491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.8733135823126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000819316229873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001526260047848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001664764072607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000911158933445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.022823971328207,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.022823971328207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.04,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.90051140132533E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.90051140132533E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.44210805132566E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.58502650870533E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.15484892620005E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,18.7628409900303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.7989940091342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.2782501780666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2355774838364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000504595535344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001288841818183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001023067768528,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000769423099353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.02333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.02333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.02,Mm²,,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.94264750666439E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.94264750666439E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.47408092805694E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.6201680205581E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.22479486106288E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,6.41743546905383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,158.611024535806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.34529821535989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,14.1183580319184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,66.6166303050385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54601610828148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000227764576857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002231757767494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.000412109848691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001332332606101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.0004,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.269667225861578,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.269667225861578,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.3,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000201630759789,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000201630759789,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000105694844281,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.59359155073733E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000168160053664,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,3.34707061248927E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,21.7540185391655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,47.8588407861642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01464464099319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040295942552939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022210953699892,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024056194152794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.032317942656413,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.032317942656413,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.05,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.41641946357952E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,2.41641946357952E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.26668708280838E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.14973238077113E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,2.01529383262532E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,4.011256309542E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,22.1958970407423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,177.557623508715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.8309734896331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,74.5742018736603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001769349898571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006245871095705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002693262222144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003728710093683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.032317942656413,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.032317942656413,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.02,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.41641946357952E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,2.41641946357952E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.26668708280838E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.14973238077113E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,2.01529383262532E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.011256309542E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,22.6377755423191,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,179.337406503608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.8031061931021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,75.3217107315155,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001783630502647,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002523391114445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002724679551109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00150643421463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.131691340548752,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.131691340548752,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.84658961339342E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,9.84658961339342E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.16158227534083E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.68500733805259E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,8.21205573757011E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.63453387582331E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,23.5215325454727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,158.708103608255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.74737160004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,66.657403515467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007384441462235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003349685597473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011358751604018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001999722105464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.022823971328207,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.022823971328207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.70655320296865E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.70655320296865E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.94575188996168E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.11978013972485E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,1.42326537127586E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.83287831692797E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,23.5215325454727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,138.078800712901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.74737160004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.9930962994184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001279828115551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000971428174426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001968632256715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000579930962994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.022823971328207,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.022823971328207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.04,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.70655320296865E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.70655320296865E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.94575188996168E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.11978013972485E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.42326537127586E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.83287831692797E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,23.997401701017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,156.029044805578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,52.7942837422374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,65.5321988183428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001290689339513,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004390855348405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001992526949432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002621287952734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.02333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.02333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.02,Mm²,,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.74438907465921E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.74438907465921E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.14408752936359E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.29980321722853E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.45482048826578E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.89568586393429E-06,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,20.9790316287078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,147.592549812876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,32.5523249417712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,46.1538695831571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,61.9888709214079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,34.5054644382775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001248886548789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002076720835977,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00188178226272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001239777418428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.801329620241147,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.801329620241147,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.86,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007489448321632,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.007489448321632,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003582203132237,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003907245189396,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.006246199900241,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001243248421391,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,22.9776820819936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.5509005803859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.024908206970478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.115515035318424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.047393174261442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.068961089904675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.117763684610272,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.117763684610272,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.14,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001100651976135,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001100651976135,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000526441840185,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000574210135949,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000917943748096,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000182708228038,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,23.3175886216681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,185.194510541348,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.2986949676697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,77.7816944273662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003700547558835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01824062999563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007052980686003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010889437219831,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.022823971328207,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.022823971328207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.04,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000213319150371,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000213319150371,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000102030549622,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000111288600749,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000177908171409,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.54109789615996E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,23.6574951613425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,186.116761729611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,52.0464893549536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,78.1690399264366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000724967160673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005237561889112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00138401730035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003126761597057,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.222197369220545,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.222197369220545,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.25,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002076718084475,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002076718084475,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000993294259804,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00108342382467,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001731982882452,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000344735202023,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,24.3373082406914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,187.039012917874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.5420781295212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,78.556385425507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00720879883233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03289697005028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013806088648359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019639096356377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.203209426564132,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.203209426564132,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.23,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001899251519322,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001899251519322,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000908412001692,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00099083951763,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001583975767114,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000315275752207,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,24.3373082406914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,144.020039946763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.5420781295212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,60.4884167776404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006592768771623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023304213583619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.012626285212864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013912335858857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.05333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.05333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.66,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000498436933945,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000498436933945,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000238402385506,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000260034548439,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00041569640291,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.2740531034942E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,22.5697942343842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,162.742645139842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.6535473156454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,68.3519109587336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001635935568481,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.075566445611577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003106249426822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045112261232764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.04181191398462,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.04181191398462,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000390785715524,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000390785715524,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000186912807735,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000203872907789,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000325915286747,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,6.48704287769503E-05,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,12.1142690739978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,150.068066160318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,8.10591490644896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.6513919627952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,63.0285877873337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.5922698008359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000845444593344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003167329382869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001473604954164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00189085763362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.098775741953859,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.098775741953859,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.12,Mm²,,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.098775741953859,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.098775741953859,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039510296781544,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.059265445172316,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.082378968789519,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.016396773164341,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,50.3061678718203,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,190.922175815823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.31028808517524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.673569318005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,80.1873138426455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.56890537028576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005394780960043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016118377021176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011383160941935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009622477661117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.032317942656413,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.032317942656413,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.02,Mm²,,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.032317942656413,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.032317942656413,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012927177062565,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019390765593848,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.026953164175449,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.005364778480965,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,50.6630697384785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,198.081757408916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.31028808517524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.458753424653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,83.1943381117448,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.56890537028576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001776625825775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002787136026578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003749775223493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001663886762235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.020925177062565,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.020925177062565,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.008,Mm²,,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020925177062565,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.020925177062565,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008370070825026,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012555106237539,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.01745159767018,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.003473579392386,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.0199716051367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,205.241339002009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.31028808517524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.243937531301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,86.201362380844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.56890537028576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001157795480938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001155150353184,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002444329420897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000689610899047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.022444212475078,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.022444212475078,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0096,Mm²,,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022444212475078,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.022444212475078,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008977684990031,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013466527485047,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.018718473204215,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003725739270863,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.7337753384531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,219.560502188196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.31028808517524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.814305744597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,92.2154109190424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.56890537028576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001257864867447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001482890685948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002657017943744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000885267944823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.024722765593848,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.024722765593848,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.012,Mm²,,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.024722765593848,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.024722765593848,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009889106237539,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014833659356309,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.020618786505269,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.004103979088579,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,48.4026912496433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,228.342922275724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.31028808517524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.485920749215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,95.9040273558041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.56890537028576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001303210631848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001927757891733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002745582434218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00115084832827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.022823971328207,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.022823971328207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.04,Mm²,,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022823971328207,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.022823971328207,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009129588531283,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013694382796924,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.019035192087724,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003788779240482,1e6 dimensionless,Own calculations,,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,1.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.0716071608336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,225.003402183488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.31028808517524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.157535753834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,94.5014289170649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.56890537028576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001127090961227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00633188130529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002367449318194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Cyprus,cy,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003780057156683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,321.3,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.76,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.76,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.75564,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.79016,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.2142,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,3.18448669201521,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,57.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,53.407828,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.63147,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.849481481481481,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.314093993152817,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.670240888888889,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.141013925925926,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.038226666666667,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.884669638474947,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.106076055138741,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.059512278057014,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.31227075340077,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.03274110568539,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.7901299267527,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.866236484129752,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.133763515870248,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.866236484129752,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.133763515870248,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.638733868154866,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,0.361266131845134,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.836302006493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.2742168077886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6533227849164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,206.787805834614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.37454384637997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1882399210615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.95352519020596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014065499687614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.4310412435861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002130923202674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,67.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,61.60501,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.721773,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.993333333333334,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.367282913165266,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.78374,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.164893333333333,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0447,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.09218615140147,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.130889717368795,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.072861926960378,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.40748098434004,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.76782997762863,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.06217002237136,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,162.982432830755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.6061269924429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.9401934231344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.133059668531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.12132823935511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.661777283568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.9781743733842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038691455097717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.7363512690737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005861755447304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,65.43,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,60.237406,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.706707,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.969333333333333,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.358408963585434,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.764804,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.160909333333333,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.04362,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.03531629655683,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.124090124902357,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.069208676583956,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.30794131132508,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.68562585969739,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.759847164909063,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.00162769371848,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.680421824850986,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.319578175149014,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.680421824850986,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.319578175149014,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.550436225971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.7038269843941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8093629271113,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.985994954334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.3486297881357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.4458153837826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.2145939907418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02028519545666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.802803588939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003073207111684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,41.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,39.689578,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.480345,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.608740740740741,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.225080610021786,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.480296444444444,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.101050962962963,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.027393333333333,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.613463121664328,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.073300880267974,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.038987287849615,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.925152105135069,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.12850571915308,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.339822341202239,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.880060842054028,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.612801168167437,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.387198831832563,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.612801168167437,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,0.387198831832563,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.809424441084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.5293312054359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.0483287536409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.585461372401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.23119367762354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8402762736351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.38880048097663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016585991597875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.83860205488956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002512777727078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,28.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,28.731862,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.359631,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.416444444444444,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.153979458450047,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.328574666666667,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.069129777777778,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01874,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.378473823079208,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.044955918345535,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021678361006298,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.375439345428673,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.86024190679473,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.295834222696549,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.512394165777303,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.434009249377446,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.565990750622554,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.434009249377446,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.565990750622554,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.488082532906439,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.511917467093561,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.488082532906439,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.488082532906439,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.511917467093561,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.511917467093561,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.205125475519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.9277350000704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.6801646562471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.28204799724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.92805185251067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.883247798067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.06024140134241,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00932441726581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.16038860773774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00141264921577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,37.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,36.329662,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.443331,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.549777777777778,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.203279178338002,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.433774666666667,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.091263111111111,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02474,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.538349707439468,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.064225863238082,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.033324065343062,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.342570735650768,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.50056588520614,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.305599568849367,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.41069523039612,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.571274589059553,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.428725410940447,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.571274589059553,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.25141471301536,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.74858528698464,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.25141471301536,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.25141471301536,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.74858528698464,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.74858528698464,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.592622389018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.4937150765951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.1950802610376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.866761782945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.92279783410416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0825189868948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.29960404757378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014405471198622,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.50350919221257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002182428886591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,25.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,26.249914,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.341589,Mm²,,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.372888888888889,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.137874883286648,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.294209333333333,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.061899555555556,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01678,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.32808918751992,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.038930831786171,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018433760755005,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.315160905840286,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.33554231227652,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,0.407628128724672,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.592371871275328,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,0.407628128724672,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.1325679428984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.5372338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.7733933619526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.668932262484,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.26289093567192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0371404225752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.72513838202059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007356882190266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.00415486479825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001114567651825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.13,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,1.55,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.68057,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.35358,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.09585,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.79,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,41.43,Mm²,T. Csoknyai et al. Building stock characteristics and energy performance of residentialbuildings in Eastern-European countries. 2016,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,36.642306,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.434403,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.837952804232804,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.661144762539683,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.139100165502646,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.037707876190476,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.704195079613483,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.084633233227513,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.049124491391808,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.2775,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,0.9725,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,2.155,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,190.274947614452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.5572338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.67,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,228.976871959232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.41742093567191,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.565069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.51716095462272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009798930077351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.32511141792298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001484537906719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,43.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,38.085888,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.450306,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.975470066014113,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.31,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.769645882085136,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.161928030958343,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.043896152970635,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.819761229185569,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.098522476667426,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.057186360161118,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.395,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,186.273077252932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.5356379672964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,224.161021166178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.50464915204541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.581576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.66323075767052,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022306194990501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.5115407347407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003379388541061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,44.52,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,39.250884,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.46314,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.945960543621218,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.33,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.746362868917141,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.157029450241122,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.042568224462955,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.794962146986846,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.095542014905743,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.05545638172863,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.415,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.015,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.671206891412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.7306700210319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,206.589130373125,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.35269650818634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.581576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.3259802278348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013306322513541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.1141377554564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002015907860801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,25.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,22.924056,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.283278,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.47676802027533,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.376169967997235,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.079143491365705,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02145456091239,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.400664204832319,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.048153570047808,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.027950245395202,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.805,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,141.76729662103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.9021906248177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.602764753748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.13618187965988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.581576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.57304384670911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009603744755817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.47951141664974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001454967330506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,12.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,11.96634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.162564,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.196011659807956,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.154653199588477,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.032537935528121,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008820524691358,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.164723413641428,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.019797177640604,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011491068525925,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.485,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,177.823528199107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.0705553436205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.992833834806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.64668913455851,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.581576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.27349279843011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00391300575888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.83620623443079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00059282037247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,21.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,19.56414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.246264,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.381765112639662,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.301212673872693,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.063373008698184,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.017179430068785,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.320826080575115,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.038558276376606,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.022380755687941,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,115.475607172057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.8103108398343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.963345670854,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.6677620922349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.581576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.52789694529913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007587470388661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.19742776077298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001149501763882,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,10.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,10.328592,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.144522,Mm²,,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.158027261462206,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.12468350929368,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026232525402726,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007111226765799,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.132802252590304,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.015960753407683,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009264255464219,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,110.527359471498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.5372338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.68,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.008624388001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.26289093567192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.581576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.26064880081844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003112604117526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.07547878354491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000471559523805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.62297632626085,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.334411523981012,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.28052832141981,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.2694140701593,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073033934681738,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.39448669201521,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.570000000000002,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.148294,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.005301,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011528677248677,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009096126349206,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00191376042328,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00051879047619,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.009905620149653,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001164396402116,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000458660696908,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.344,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,0.91,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.821651627001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.5372338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.006975567933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.26289093567192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.254517244273428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000114168876898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.336307349395382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.72965848499968E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.790000000000004,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.334018,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.007347,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01786326731922,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.016,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014094117914865,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002965302374991,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000803847029365,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.015348399203057,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001804189999241,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000710678116922,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.959915040178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.9503719336734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.56316175935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.23398134795152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.274621613859984,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000447802382597,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.362194900527917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.78420609634001E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.59572,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.01023,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023372789712115,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018441131082859,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003879883092211,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001051775537045,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.020082267178785,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002360651760924,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000929870772406,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.098178453354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.6466748088265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.119347950766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.33997123353722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.304185113098373,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000293055483294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.400158548962954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.43979057190858E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,6.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,7.551174,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.064821,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.131972720465411,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.104126476447209,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021907471597258,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005938772420944,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.113393029473235,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.013329244767007,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005250446225169,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.223049740202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.5218767629449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.574418057359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.38156432958615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.779970952839217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002302563573651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.01791696838016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000348838381408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,13.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,13.249524,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.127596,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.220432784636488,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.064,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.173921467078189,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036591842249657,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009919475308642,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.189399302802913,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.022263711248285,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00876977058529,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.1570731041945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.3518451074675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.495021773588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.14380453378133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.40941325287969,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003489986028332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.82736138321023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000528732883292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,9.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,9.543486,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.086769,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.168012665138115,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.039,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.132561992793973,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027890102412927,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007560569931215,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.144359114692012,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.01696927917895,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006684271267154,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.091096468187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.7368432864838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.415625489816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.26263175790229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.999088968766636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003014081155125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.29977508212038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000456633295001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,13.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,13.44369,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.139035,Mm²,,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.214861627426683,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.073,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.169525824039653,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03566703015283,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009668773234201,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.184612477226661,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.021701024370095,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008548125829928,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.7864538527957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.5372338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.6082185664544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.26289093567192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.26457112185255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002994429315123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.65482931335753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000453656041241,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,76.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.00702367373915,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.855513307984791,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,15.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,14.617128,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.191766,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.20077649018922,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.158412650759295,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033328897371411,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009034942058515,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.17056893871181,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.020278425509111,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009929125968299,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.405,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.821651627001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.5372338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.006975567933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.26289093567192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.05267842647734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004130109195842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.61394034534837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00062571154317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,23.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,21.185004,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.26412,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.302604462397313,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.23875492083148,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.050232340757954,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013617200807879,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.257076523012846,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.030563050702129,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014964888682338,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.959915040178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,60.9503719336734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.56316175935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.23398134795152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.93922205810924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016098212235122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.74071128150302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002438879153621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,19.81,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,18.390702,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.233337,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.259281764709808,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.204573312356039,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043040772941828,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011667679411941,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.220271882391197,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.026187458235691,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01282242408292,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,118.098178453354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.6466748088265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.119347950766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.33997123353722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.49161611367591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006684329159867,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.17657599853755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00101267586772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,9.214248,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.132246,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.117010549041175,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.092321323193487,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019423751140835,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005265474706853,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.099405887358774,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.011818065453159,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005786596229243,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.223049740202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.5218767629449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.574418057359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.38156432958615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.963929978669365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004697626114392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.25446183715955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00071169035633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.19,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.515898,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.069471,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028663657986597,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022615626151425,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004758167225775,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001289864609397,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.024351106634867,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002895029456646,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001417521895083,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.1570731041945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.3518451074675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.495021773588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.14380453378133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.333381552484089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001900160031461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.44368631012682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000287874244766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.58,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.221936,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.110298,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.086121858242834,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.067950146153596,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01429622846831,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003875483620928,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.073164512172341,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008698307682526,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004259038387966,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.091096468187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,34.7368432864838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.415625489816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.26263175790229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.742599710452334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003831404340813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.969941499014016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000580457757633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.96,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.477532,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.058032,Mm²,,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.012564891172207,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009913699134871,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002085771934586,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000565420102749,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.010674457702956,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001269054008393,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000621379460858,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.7864538527957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.5372338988245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.2139175667571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.6082185664544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.26289093567192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4150137274459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.187943789450911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001249848757617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.259195770139733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000189352086779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.126,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,25.2034403922711,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,25.2034403922711,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,11.076639,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.215717737336746,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.037671680149364,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.103089511885368,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.111735817330804,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.194868318915561,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.020849418421185,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,208.607211523839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.76169977165301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,335.857610553382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.71403972598362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.37763063739972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.546409666711428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.75878072750565,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.198563866684571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,9.08537067676473,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,9.08537067676473,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,4.358619,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.07405432049931,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.013579938803849,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035250816833538,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.038344042098803,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.067116784873385,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.006937535625925,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.90819582357449E-17,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,182.63829064413,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.6581865138269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.7188777907306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,294.04764793705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6632746055308,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.66265334887672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.70220932417976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.22515835324471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.72297918282748,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.090063341297884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.01682033207107,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.01682033207107,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.715928,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024036649387745,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00450925305629,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011450740768643,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012449644656663,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.021753195494239,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002283453893506,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.057212505458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.7177219317331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62887290855127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,281.842112133787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6870887726932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.75464749026153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.545097456199313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.088743887158875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.870644572203658,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03549755486355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,14.5765659384406,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,14.5765659384406,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.653268,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.13861086203555,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.021787649668552,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.067986932988235,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.070115262032547,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.12401923787945,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.0145916241561,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.38777878078145E-17,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,176.92703149223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.2589225597175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.02096880596495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,284.85252070249,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.103569023887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.22516256715794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.66675358965249,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.301119741181047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.25748960932699,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.120447896472419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,16.261695562676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,16.261695562676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,7.345305,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.1045825761564,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02430641945658,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050906435197679,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.052689487983047,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.094264131684248,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.010318444472151,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.019737646084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.0290805541089,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.20081031406813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.281777610195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2116322216436,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.24097237688175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.11760690693284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.352788245539499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.37467178261917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.1411152982158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,12.9604041751626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,12.9604041751626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.969325,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.115834679587164,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.019371966409908,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.055339492428953,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.060421694989219,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.104378765992895,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.011455913594269,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.56125112837913E-17,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.301221134306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.4132789755762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.98554041133258,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.004966026233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7653115902305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.7826484935991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.76633151335549,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.294963921520881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.82261550852153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.117985568608353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,3.19333649868919,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.19333649868919,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.796868,Mm²,,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028514040366031,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004773092455457,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013625575287765,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014843794401757,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.025696963715891,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00281707665014,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.451561378008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.3029630146698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,206.807013818593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.5211852058679,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.18,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.434618083476981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074215972546244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.6897192144698,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.029686389018498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,9.22209652393436,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,9.22209652393436,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.957966,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.136623652206435,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.012831209950361,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.066726991737623,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.069896660468812,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.122483104203069,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.014140548003366,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,226.061206525315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,363.958542505757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.11866526547143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.195246128623959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.54714920799205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.058098451449584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.68748151276823,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.68748151276823,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.234335,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0398145409299,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003673416593432,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019445421790163,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020369119139737,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.035693735943655,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.004120804986245,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,224.755572494228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.8768214836313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,361.856471715707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3507285934525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.613907543136353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056627366445998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.984339894611273,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022650946578399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.871771249635887,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.871771249635887,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.477546,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012915129624235,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001188955767176,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006307749308477,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006607380315759,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.011578413708127,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001336715916108,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,214.147295991648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.3363330259626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,344.777146546553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.534533210385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.189892708179142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022127730491216,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.304413106706412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008851092196487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.56183824643169,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.56183824643169,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.68277,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.126842048095284,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.012246185312192,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.061949656289737,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.064892391805548,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.113713896117422,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.013128151977862,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,203.539019489068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.6298318352464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,327.697821377399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.0519327340986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.77414758034603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.156995865787891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.84347104271334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.062798346315156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.77506283134285,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.77506283134285,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.10444,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.07074167157545,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.006522352530078,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.03455023239745,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036191439178,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.063419908567391,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.007321763008059,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,169.848998508346,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.9233306445303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,273.456887598436,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5693322578121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.828596173442372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.081911813941575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.32684166041523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03276472557663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.79457928925138,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.79457928925138,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.529375,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.085845619100021,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008171069397749,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04192700036845,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043918618731571,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.076960597523168,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008885021576852,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.832260228185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.4202308865226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,270.209938967377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.168092354609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.993822341927495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.089591046498598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.59131891937945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035836418599439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.34754559665987,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.34754559665987,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.679896,Mm²,,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.019963638469035,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001893422392985,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009750241028277,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010213397440758,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01789740188749,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002066236581545,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,153.377026312581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,34.6255462191968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.67671260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,246.937012363255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8502184876787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.4120551317044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.211637074323761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023541770372247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.338704329127397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009416708148899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.51290145645208,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.51290145645208,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.995171,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.066857799354846,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.011051795974979,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029751720712906,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.037106078641939,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.061843464403232,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.005014334951613,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,245.72731911856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,395.620983780881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.12847038617789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.098421616985288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.80883116571295,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039368646794115,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.99809419361103,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.99809419361103,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.946998,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029601395460904,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004971611183869,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013172620980102,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016428774480802,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.027381290801336,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002220104659568,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,238.278210673341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.6623944672464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,383.62791918408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.6649577868986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.484748011974068,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.058394164235693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.776899561145158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023357665694277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.629029235848141,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.629029235848141,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.376371,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009318951642195,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001559213338502,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004146933480777,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005172018161418,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00862003026903,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000698921373165,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,225.629880997188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.2773290312485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,363.264108405473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9109316124994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.144649585135287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02343938060482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.231769896729893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009375752241928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.221222652684727,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.221222652684727,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.206397,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003277372632366,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,3.72527398086141E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001458430821403,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001818941810963,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003031569684939,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000245802947427,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,212.981551321035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.2610020087383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,342.900297626866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.9044008034953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048073568548558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013882469031598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.07700598319829,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005552987612639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.66796505485969,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.66796505485969,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.8094,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.024710593405329,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003822045899791,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010996214065371,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013714379339958,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.022857298899929,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.0018532945054,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,188.034615369912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.2446749862281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,302.735730745558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8978699944912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.320852409916538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.058474839933853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.513613310591653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023389935973541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.76506186037479,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.76506186037479,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.84987,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.026149064598145,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00371506661275,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011636333746175,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014512730851971,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.024187884753284,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001961179844861,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,200.274934411351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.9671217360904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,322.442644402274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.1868486944361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.361135026102343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062012567749851,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.578296067133413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024805027099941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.483384027575493,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.483384027575493,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.315666,Mm²,,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00716124485297,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00116510350013,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003186753959572,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003974490893399,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.006624151488998,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000537093363973,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.380753717438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.32697456970955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,293.633013485075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.19236948365146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.090251533678912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015571777129518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.144447417161212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006228710851807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.017,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.2313207204583,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.2313207204583,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.877808,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003699867829908,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003699867829908,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002807459709334,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003422377742665,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000277490087243,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,230.817444781417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,371.616086098081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.989872795959017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.092632110103801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.58827903621703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03705284404152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.69709409651422,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.69709409651422,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.821541,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001904898702192,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001904898702192,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001445437135223,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001762031299528,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000142867402664,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.02806284593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.7696079754389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.365181181947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.5078431901755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.195420482212248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04417393750575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.312454665935596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0176695750023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.512513069230022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.512513069230022,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.327807,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000564941801156,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000564941801156,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000428677838717,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000522571166069,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.23706350866671E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,106.432488426987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.3102097899462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.356306367449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7240839159785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.056148104195333,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017803266940613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.089742421971296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007121306776245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.00780387416254,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.00780387416254,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.951045,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002108901387925,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002108901387925,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001600234373158,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001950733783831,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000158167604094,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.836914008043,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,46.9445100672834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.34743155295,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7778040269133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.208729098874255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04464634157694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.333483824756723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017858536630776,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.55164308185261,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.55164308185261,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.594518,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004090601060006,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.004090601060006,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003103948084332,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.003783805980505,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.0003067950795,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.8170418170903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.5788103446205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.945437325515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.8315241378482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.30877642620297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.063109125513084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.492583880295082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025243650205234,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.599900194193611,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.599900194193611,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.36423,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000304693901293,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000304693901293,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000231201732301,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000281841858696,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.28520425969777E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.4054461287176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.1198437928674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.622768267235,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.047937517147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048308427156975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016434000704676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.077008684875717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00657360028187,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.230932333236237,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.230932333236237,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.210444,Mm²,,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000185201809742,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000185201809742,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000140531133232,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000171311674011,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.38901357306124E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.6492078726156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.9843750623397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.12199430979044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,116.965224674911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.3937500249359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74639317174852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017498020512098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008624915825619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.02787621555805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003449966330248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.013,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.21161006893873,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.21161006893873,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.619191,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002037192384312,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002037192384312,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001067896247856,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000969296136455,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001699018448516,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000338173935796,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,114.242977720095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.931194129353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.167484542225583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030544639754055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.257732806936296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012217855901622,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.405706583163414,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.405706583163414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.28329,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000314149739962,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000314149739962,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000164677293688,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000149472446274,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000262000883128,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.21488568336093E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,228.719104374313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.8768214836313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,368.237758042644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3507285934525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.102525772236519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012996444758098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.161075993683181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005198577903239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.269771055442276,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.269771055442276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.113316,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000437633939015,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000437633939015,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000229407710832,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000208226228183,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000364986705138,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,7.26472338764831E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,225.047008661881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.3355896984676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,362.325683945629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5342358793871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.067182993272179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005250563682272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.105511171237461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002100225472909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.69709409651422,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.69709409651422,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.821541,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003086018318051,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003086018318051,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001617690802322,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001468327515729,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002573739277254,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000512279040796,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,221.37491294945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.0069968831439,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,356.413609848614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.4027987532575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.416407449694675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033688929226375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.653723503365582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01347557169055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.26015847169628,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.26015847169628,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.639426,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001880199817506,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001880199817506,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000985600744337,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00089459907317,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.0015680866478,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000312113169706,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,190.599253645261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.6784040678201,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,306.86479836887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.271361627128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.27041654346418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02281369919947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.422975810470843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009125479679788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.153254888824158,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.153254888824158,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.178068,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0005242,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0004758,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000834,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000166,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,186.169423896931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.4257681689414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,299.732772474058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5703072675766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032207968575732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006486263686307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.050347425779209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002594505474523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.269771055442276,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.269771055442276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.113316,Mm²,,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000424283665417,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000424283665417,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000222409497412,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000201874168005,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000353852576958,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.04310884592428E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,177.018328232617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.1731322700627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.9900615383897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,284.999508454513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8692529080251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7880738460676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054226245461277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004212310656314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.084650807261908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001684924262526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.016,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.570771152539081,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.570771152539081,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.238773,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001733758022352,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001733758022352,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000829256462091,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000904501560261,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001445954190641,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.00028780383171,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,227.891425658178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,366.905195309666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.134356770409806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011778651931302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.214558403679211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004711460772521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.230932333236237,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.230932333236237,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.097128,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000701473407665,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000701473407665,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000335514730886,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000365958676779,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000585028821993,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116444585672,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.493137592141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.8500181065832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,324.403951523348,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1400072426333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048264136745287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004647576558656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.076994789056394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001859030623462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.075577444412079,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.075577444412079,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.032376,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000229571869523,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000229571869523,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000109804225193,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00011976764433,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000191462939182,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.81089303408388E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.094849526105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.328518287649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,281.902707737029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3314073150596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013800334803255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001564684108081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021986022479235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000625873643232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.1779,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.1779,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.08094,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000540383918851,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000540383918851,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000258465628387,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000281918290465,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000450680188322,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,8.97037305293127E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.167785765935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.7707386845694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,269.140135083156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.1082954738278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.031074064559979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003461863589129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.049481928597957,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001384745435652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.0279,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.0279,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.008094,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.47482368518873E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,8.47482368518873E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.05350816862577E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.42131551656296E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,7.0680029534474E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.40682073174133E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,131.146275443987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.2129590814898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.145503464819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8851836325959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003868335450682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000301201690806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006142184785622,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000120480676322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.0279,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.0279,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.008094,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.47482368518873E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,8.47482368518873E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.05350816862577E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.42131551656296E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,7.0680029534474E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.40682073174133E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.317552090921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.0506437620834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.761258866382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.8202575048334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003705714069132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00034035791061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.005880364361326,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000136143164244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.0579,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.0579,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.028329,Mm²,,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000175875373252,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000175875373252,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.41211910263197E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.17541822254464E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000146680061292,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.91953119597932E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.168996843334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.7746651455408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.50374070949631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.642084917768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5098660582163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.00448885139557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007218551504309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001098447488908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011443736621235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000439378995563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,5.45474046994854,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.45474046994854,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.38773,Mm²,,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004765467538894,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.004765467538894,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001906187015558,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002859280523337,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003974399927438,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000791067611456,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,150.101283788158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.66971260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,241.663066898934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.40365513170441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.838780877155998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.117786519313023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.3422301069681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.047114607725209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.0660619574716,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.0660619574716,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.975327,Mm²,,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001717862258687,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.001717862258687,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000687144903475,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001030717355212,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001432697123745,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000285165134942,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,120.887722342591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.66971260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.629232971571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.40365513170441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.257343377875282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.048112798566845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.411214278395879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019245119426738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.65815827750267,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.65815827750267,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.388512,Mm²,,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000570420511621,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.000570420511621,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000228168204648,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000342252306972,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000475730706692,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,9.46898049290395E-05,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.889669265253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3299155737971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.66971260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.702367517058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7319662295188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.40365513170441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.073423730614117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019165264159407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.117221953079361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007666105663763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.91070706864744,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.91070706864744,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.910575,Mm²,,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002756137683072,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.002756137683072,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001102455073229,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001653682609843,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002298618827682,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00045751885539,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.8916161879158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.7294029098667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.66971260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.775502062544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.6917611639467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.40365513170441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.188321827628992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.051656376054652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.300323326695098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020662550421861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.97896612292456,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.97896612292456,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.189427,Mm²,,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003074762061257,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.003074762061257,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001229904824503,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001844857236754,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002564351559089,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000510410502169,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.6750631827553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,57.863990968064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.66971260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.616851724236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.1455963872256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.40365513170441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.385097018456098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.126688984153235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.612514936060736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.050675593661294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.61970794251869,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.61970794251869,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.039688,Mm²,,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002450553750853,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.002450553750853,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000980221500341,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001470332250512,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002043761828212,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000406791922642,1e6 dimensionless,Own calculations,,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.1468930273213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.9985790262613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.66971260975367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.106497773987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.5994316105045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.40365513170441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.327152035523809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.120338693656917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.519764046992416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Czech Republic,cz,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.048135477462767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,301.929291338583,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.98,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.3,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.88634,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.09068,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00298,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,2.28931034482759,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,62.3070866141732,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,61.0098755905512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.906147,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.614962255854867,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.268272125037358,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.389271107956131,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.225076185642881,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000614962255855,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.561912500083132,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.084027361748416,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.066156424171981,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.14686970807532,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.69122540966342,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.758965415560891,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.926407178061418,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,0.101857702514849,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,,insulation,0,0.033949172248199,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,cavity wall,,0,0.898142297485151,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,,insulation,0,0.291166434980412,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.315809427524327,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.684190572475673,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ROOF,construction material,,insulation,0,0.516969493238974,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.550928851257425,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,,insulation,0,0.033949172248199,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.449071148742576,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,195.800338221598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.2591750495464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.1617001643091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,236.193947996714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.69731279458436,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.0810940199513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.2019710739142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017451643693621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.7859720201574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004256455896874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,55.1496062992126,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,53.9948291338583,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.810018,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.544318923291734,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.237454563852099,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.344553878443667,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.199220725924775,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000544318923292,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.465933597459614,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.072264280330573,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.074211277553649,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.898379640205597,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.67079525985151,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.500681039406054,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.707815533980583,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.97310522558538,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,0.02688670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.02688670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.94621851798972,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,,insulation,0,0.746205625356939,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,other,,0,0.02688670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.97310522558538,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.02688670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.97310522558538,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.65316067961165,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.02688670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.08066818960594,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,wood,,0,0.63971329240434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,0.36018670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.36018670759566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.63971329240434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.45966590519703,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.284910277328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.2292796788667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.435706679483,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.446187267541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.9339213136756,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.3811859553698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.5914999579877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016386080666916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.6513143464648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003996565074661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,60.5511811023622,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,59.2889125984252,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.877932,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.597631713322877,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.260711821248235,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.378300874533381,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.218733207076173,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000597631713323,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.512693978044391,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.078839601850961,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.076598639180586,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.3951755526658,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.49471391417425,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.404102730819246,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.331847204161248,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.680884265279584,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.281079323797139,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,0.038036410923277,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.562158647594278,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.562158647594278,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.399804941482445,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.437841352405722,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.038036410923277,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.923927178153446,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.076072821846554,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.923927178153446,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.923927178153446,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.076072821846554,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.076072821846554,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.076072821846554,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,133.941554206747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,10.9478010656002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.249363164765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.573696839599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67016867989989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.1771025380506,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.16737195685824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009611424885125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.9223785422346,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002344226529482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,30.496062992126,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,29.8318913385827,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.500049,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.300991888907608,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.131305186436205,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.190527865678516,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.110163031340184,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000300991888908,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.224554657283797,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.038418048317572,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.062603975056024,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.395533178414666,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.38313968499871,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.203075135553834,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.247492899561064,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.947327652982184,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.947327652982184,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.052672347017816,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.973663826491092,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.026336173508908,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.052672347017816,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.1195159677274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,5.82221988113817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.1244050231173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.67967211187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.4200394290096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.2306483813181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.21398340039029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002911395229343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.80206820049932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000710089296437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,30.3464566929134,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,29.6852622047244,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.498168,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.299515295597707,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.130661034992288,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.189593182113349,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.109622598188761,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000299515295598,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.223275385539521,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.03825803092184,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.06268718457118,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.338894654903996,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.03257394914375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.156914893617021,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.219181370005189,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.946808510638298,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.946808510638298,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.053191489361702,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.973404255319149,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.026595744680851,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.053191489361702,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.5518381516393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.5926313928109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.1430283402065,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.5192823623225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.75424279670657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.2510446381942,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.82568278954217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011753093995694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.33396612076572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00286657962555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,32.1811023622047,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,31.4833984251969,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.521235,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.317622992503329,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.138560365857157,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.201055354254607,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.116250015256218,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000317622992503,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.239369234900708,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.04076447514243,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.065327943706271,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.277046733545388,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.67673109860533,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.111252752630291,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.187418644482506,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.509416344506973,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.018838341081478,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.471739662344018,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.028260337655982,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.056520675311965,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,other,,0,0.471739662344018,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.943479324688035,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.056520675311965,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.971739662344018,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.028260337655982,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.056520675311965,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,wood,,0,0.471739662344018,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,0.528260337655982,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,0.528260337655982,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.471739662344018,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.943479324688035,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.8314588292156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.1008261730646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.9266059360348,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.3809887856828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5122915036104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0140188211453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.62080340518941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022465659130317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.08308050458574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005479374261884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,30.8977952755906,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,30.2256291496063,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.514404,Mm²,,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.304956930521877,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.133034902576658,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.193037737020348,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.111614236571007,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000304956930522,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.234797881738079,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.039326762287962,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.059153002482109,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.18903420471863,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.53001090718192,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.048293739583387,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.073086069897707,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.940112435716434,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.059887564283566,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,42.2096463665989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1150496712135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.9712192958794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.9174964120282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.34506061480898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0628793728471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.95467535337203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015491302011071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.28250328437983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0037783285605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.85,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,1.1,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.17105,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.6771,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00185,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.54,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.31,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,36.2834645669291,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,35.5423236220472,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.572814,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.398726055294671,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.252393593001527,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.14593373623785,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000398726055295,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.331912500083132,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.047049674524771,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019763880686768,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.1875,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.73333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.833333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.973333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,226.35,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.4496186893356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,273.046005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.71936199832896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.71069086141824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013432269879913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.4337486815758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003276130623711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,28.6377952755905,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,28.0488031496063,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.476685,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.307452698246938,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.194617557990312,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.112527687558379,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000307452698247,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.255933597459613,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.036279418393139,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015239682394186,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.023,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,,insulation,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,wood,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,202.579565935893,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.6299686233626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,244.371730388468,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.00724934723814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.20752661817494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011740736593228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.42976605840651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002863565655088,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,34.0393700787402,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,33.3428866141732,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.544599,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.363625882715665,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.230175183759016,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.133087073073933,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000363625882716,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.302693978044391,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.042907854160449,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018024050510825,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.335,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,168.447083380473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.0822491570112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.197716681865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.67856056939502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.2410259311272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008213777808659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.45916608315308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002003340407532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.98425196850394,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.88586535433071,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.166716,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041510464918847,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02627612429363,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015192830160298,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.1510464918847E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.034554657283797,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.004898234860424,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002057572774626,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.155,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.255,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.227049633821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.0199342163869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.012589973279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.41946195537677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.652974544636067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002337347352819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.779561969560848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000570079019353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.83464566929134,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.73923622047244,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.164835,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03997367743384,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025303337815621,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014630365940786,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.99736774338404E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.033275385539521,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.004716893937193,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001981397957126,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,109.422913576855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,24.9840736035707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.99686064776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.09361555191089,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.47951164565895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004118249772445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.57061862165724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001004441119499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.66929133858268,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.53737244094488,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.187902,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.059307197770331,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.03754145618862,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021706434383941,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,5.93071977703311E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.049369234900708,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.006998249336899,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002939713532724,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.135,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.135,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,69.6187775198887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.9482129907544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.9811313222417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.76776914844501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.489518523380881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006754741117389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.578950303417953,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001647481358531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.1259842519685,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.00487716535433,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.181071,Mm²,,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.053815637152887,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034065298317777,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019696523197957,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,5.38156371528867E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.044797881738079,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.006350245184041,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002667510230767,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.7678656388046,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,26.8332885002129,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.3468121777598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.06647632009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.54463906520193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0934286970825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.368151910427868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004858730382022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.433653197799138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001185044340175,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.788825757629205,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.753410230663834,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.499326704579287,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.288710227292289,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000788825757629,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.749310344827586,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.039515412801619,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,19.6771653543307,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,19.2664897637795,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.253539,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.216236200560196,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.136877514954604,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.079142449405032,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00021623620056,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.025515871666103,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.040720328894093,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,153.206437624057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.4166442501065,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.8129257059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.27231953260096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.39826665897879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003401642566528,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.04972109904722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000829660621976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,22.0629921259842,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,21.6048385826772,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.277398,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.236866225044795,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.149936320453356,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.086693038366395,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000236866225045,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.027950214555286,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.04891601048951,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,wood,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.801493992743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.4756991350202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.880342203445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.77452301903142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.65067358263945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004292927988656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.34818467893474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001047045136433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,21.9055118110236,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,21.4504921259843,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.275418,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.234005830607212,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.148125690774366,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.08564613400224,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000234005830607,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.027612688011651,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.046393142595562,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.638791326433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,5.63944968479548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.131273977076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.37546177812162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.41987846674523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001553205953287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.863873553214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000378826932007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,24.9055118110236,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,24.3907921259842,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.313137,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.259481423988761,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.164251741384886,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.094970201179887,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000259481423989,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.030618808030674,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.048862615958087,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.4852979591014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,4.59024974343818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.0579149280641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.11956191242457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.40630481969969,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001437377033911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.83993638258702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000350576258571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,24.8976377952756,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,24.3830748031496,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.313038,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.259541618163867,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.164289844297728,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.094992232247975,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000259541618164,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.030625910943336,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.048915707220531,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.2188373402107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,24.6102961244621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.0860834834962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.00245122475632,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.20398186962845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007703957878209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.59589405904521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001878995326495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,24.6929133858268,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,24.1824244094488,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.310464,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.258315794732998,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.163513898065988,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.094543580872277,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000258315794733,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.030481263778494,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.057834530954504,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,58.95237672132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.6303425054861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.1142520389283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8853405370881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.98594569562431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013856114655623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.33339315170122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003379506364507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,23.9214173228346,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,23.4262811181102,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.310068,Mm²,,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.251141293368991,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.158972438702571,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.091917713373051,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000251141293369,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.029634672617541,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.05150662075145,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.7118306654403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.7677882803028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,47.9043813317207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.50426356156585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47312793731627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009540106576497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.71672610348572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002326831994008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-54.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.341174242370795,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.310689655172414,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.030484587198381,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,6.34645669291339,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.20106220472441,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.079794,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.097134030148662,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.061485841084103,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03555105503441,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,9.71340301486616E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.011461815557542,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00567221459112,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.73333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.826666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.74,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,,insulation,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,,insulation,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,,insulation,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,153.206437624057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.4166442501065,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.8129257059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.27231953260096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.09405714197998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001070567711293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.30376112029714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000261111464784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.4488188976378,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.3411874015748,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.055935,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.068090232052102,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04310111688898,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024921024931069,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,6.80902320521015E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.008034647382148,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010055584669954,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,145.801493992743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.4756991350202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.880342203445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.77452301903142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.733904695752288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000865633231117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.874093346531372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00021112794507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.60629921259843,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.49553385826772,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.057915,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.070500505753061,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044626820141688,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02580318510562,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,7.05005057530608E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.008319059678861,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0121814460742,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.638791326433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,5.63944968479548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.131273977076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.37546177812162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.507500868920621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000326608728495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.600585387641867,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.96598688799135E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.60629921259843,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.55523385826772,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.020196,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024584791749785,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015562173177614,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008998033780421,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.45847917497853E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.002901005426475,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011683786323311,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.4852979591014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,4.59024974343818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.0579149280641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.11956191242457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.153847609289444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.27046838184775E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.181536740744722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.26106723833267E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.61417322834646,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.56295118110236,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.020295,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024705305434833,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01563845834025,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009042141789149,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.47053054348333E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00291522604131,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011790079393523,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.2188373402107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,4.59024974343818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.0860834834962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.11956191242457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.141688757345144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.31591185430779E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.16684966651519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.27215090126567E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.81889763779528,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.76360157480315,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.022869,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027838661246081,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017621872568769,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010188950016066,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.78386612460804E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003284962027037,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004553699219043,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,58.95237672132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.6303425054861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.1142520389283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8853405370881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.145243129333752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001020651302758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.170621176087843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000248936852743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.8503937007874,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.79447086614173,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.023265,Mm²,,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028320715986272,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01792701321931,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010365382050976,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.83207159862723E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00334184448638,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004978871499892,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.7118306654403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.7677882803028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.6921097988081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,47.9043813317207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.50426356156585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8523986516547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.113251060199577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000715812594341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.131949738574796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00017458669176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.148,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,15.1883595774367,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,15.1883595774367,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.424719,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.059821078216808,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.018250020228174,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029175421846718,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029745693852343,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.053528088512407,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.006292989704401,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.30104260698261E-17,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.3690129183944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.2460593632117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.1300833059463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.49527123585404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.404239287992503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.07653374906411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.399583818235037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026613499625644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,21.3972493522025,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,21.3972493522025,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.880132,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.139605891695377,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.025710494376568,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.06778277618126,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.071077256167217,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.125329897573526,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.014275994121851,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,166.726424555172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.9251246402687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.30782711514945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.728217291827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7700498561075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.56939253817934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.59547078270062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.088225428440158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.70809216967335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035290171376063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,17.829380107634,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,17.829380107634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.618434,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.120310190652319,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.021423416133992,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.058457168281824,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.061064014135758,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.108296301084947,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.012013889567372,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.42861286636753E-17,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.123542144727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.1384608627102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.25032542881991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.297248409068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2553843450841,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.50039051458389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.50277904214745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.07790892176788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.58165214305774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031163568707152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,22.3041658361571,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,22.3041658361571,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.946653,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.165917266448728,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.026800226555547,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.080210463700867,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.085082171228694,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.148976483091415,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.016940783357313,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.309853290374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.6257552277193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.33531951000421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.729148889085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2503020910877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60238341200505,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.31540658488385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.088817513291305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.41993192435558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035527005316522,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,17.0819214670122,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,17.0819214670122,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.561416,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.086938787066792,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.020525285217251,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041615094653934,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044822343430369,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.077345752644817,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.009593034421975,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.4433195931026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7425447092978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.35472607719151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.1266191808957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6970178837191,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.62567129262981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.55100508549815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.072984557189813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.60146926322128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.029193822875925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,21.1181981263703,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,21.1181981263703,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.859664,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.137789311910795,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.025375192167651,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.065457062512991,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.071865830467373,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.123576308774726,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.014213003136069,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.853651603666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.2209022159834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.39273765700094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.029261151776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.8883608863933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.67128518840113,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.2648504967446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.087815011898585,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.3377960703093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035126004759434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,8.25194339246562,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,8.25194339246562,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.885241,Mm²,,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.047739508346087,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009915365320819,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022472869258633,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024952268618926,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.0432495781836,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004489930162487,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.6313824890031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.5062431173694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.33875829371983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.560323963673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6024972469477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60650995246379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.816695999283382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036743028163463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.843074930063399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014697211265385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.80705600956747,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.80705600956747,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.374272,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037575111901908,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004276119402985,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018351684652892,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019223427249016,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.033686087820061,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003889024081847,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,22.870688816247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,23.5568094807344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.092349243307318,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017478337363173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.076017193107638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006991334945269,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,11.371337452661,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,11.371337452661,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.929101,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.112233514869312,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.012772388059702,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054814848662172,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.05741866620714,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.100617346080338,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.011616168788974,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,193.724336471207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4305899125529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.536066565343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3722359650212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.21867345269538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040351404518343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.28791432675728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016140561807337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,9.3681482957943,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,9.3681482957943,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.78217,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.092462317245533,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.010522388059702,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.045158595742718,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.047303721502815,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.08289246741062,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.009569849834913,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,162.582663817786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.8648958116785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.46014373232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5459583246714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.53608932959356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.034309805557021,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.58438044966732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013723922222808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,12.9459836555711,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,12.9459836555711,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.044599,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.127775053299944,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.014541044776119,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.062405336031693,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.065369717268251,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.1145503352834,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.013224718016544,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,168.038457905632,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.3557041467442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.0796116428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.1422816586977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.19337534358093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042155528195985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.26222848027299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016862211278394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.55112617101854,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.55112617101854,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.500004,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.054788841176343,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.006235074626866,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026758870030526,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028029971145817,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.049118196114591,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.005670645061751,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.30644037182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.8465124818099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.725633582974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.738604992724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.825414390898187,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018423403626955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.851485440905534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007369361450782,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.21207893163245,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.21207893163245,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.697374,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.081052073840765,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009223880597015,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.03958583286383,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.041466240976936,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.072663184198246,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008388889642519,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,143.880201684653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.530326358447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.196607735193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.4121305433788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.19294327451822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023383177813896,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.23066748202316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009353271125558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.16264700019932,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.16264700019932,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.253657,Mm²,,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021345024300299,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002429104477612,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010424909868266,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010920114432033,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.019135814285218,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002209210015081,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.829942226527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.1666229988794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.754840493323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.2666491995517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.285937927776758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008412946090027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.295025886376393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003365178436011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.996611520829181,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.996611520829181,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.116229,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009836416728248,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00101282916948,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00437720544407,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005459211284178,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00909868547363,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000737731254619,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.8604639763861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.6362778956777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027402361809574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005427843048329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.028501451994904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002171137219332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.74407016145107,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.74407016145107,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.171054,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017213729274434,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00177245104659,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007660109527123,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009553619747311,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.015922699578852,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001291029695583,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,238.396378462483,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.3744488071948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,245.548269816357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.3497795228779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.418631679858672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009985182966266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.431675414083756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003994073186506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.09288419374128,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.09288419374128,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.196639,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020656475129321,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002126941255908,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009192131432548,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011464343696773,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.019107239494622,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001549235634699,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,208.411334155686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.9581932952668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,214.663674180356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.5832773181067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.439602790552079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011593480171388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.45337261486383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004637392068555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.63105441498904,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.63105441498904,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.236113,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.025968140162575,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002673869007427,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011555822372346,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014412317790229,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.024020529650382,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001947610512193,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,228.270424635442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.6748487588881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,235.118537374506,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.4699395035552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.604893855807043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015034459565007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.623772002515206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006013783826003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.32549332270281,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.32549332270281,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.140352,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01308243424857,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001347062795409,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005821683240614,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007260751007956,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.012101251679927,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000981182568643,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,203.173771831354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.3915042225094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.268984986295,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.3566016890038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.271472746794842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009598884400638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.279985364908974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003839553760255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.77715766394259,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.77715766394259,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.320178,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037280019400061,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00383862255233,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016589608633027,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020690410767034,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.034484017945056,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002796001455005,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,187.679316621874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.0754192647345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.30969612053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.6301677058938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.715070270698589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022116429589344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.737572282084197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008846571835738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.1925453458242,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.1925453458242,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.203949,Mm²,,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021640116802146,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002228224172856,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009629851976955,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012010264825191,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.020017108041985,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001623008760161,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.376284768489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.6350658633407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.847573311543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.96207903600885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.403453230406642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009524328367823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.416166269847134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003809731347129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.018,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.36515846123181,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.36515846123181,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.363307,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003731187884524,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003731187884524,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002831225366777,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003451348793185,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000279839091339,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.7181809595129,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.9097263882983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.175996183123862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016966276698237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.181721473623009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006786510679295,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.61769982060993,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.61769982060993,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.308482,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003092285849503,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003092285849503,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002346426502603,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.00286036441079,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000231921438713,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.369162907615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.9025193598739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.430237794843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.3610077439495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.491896390631984,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015702510977173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.507022419375992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006281004390869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.82698823998405,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.82698823998405,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.323833,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003271178419309,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003271178419309,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002482170184572,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.003025840037861,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000245338381448,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.969478250141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.4115445534726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.118562597646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.564617821389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.404013970935585,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016648754707385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.416524882123207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006659501882954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.02969902332071,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.02969902332071,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.265353,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002589682915286,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002589682915286,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001965051396119,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00239545669664,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000194226218646,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.533014723114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.4709860387538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.669005164807,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.7883944155015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.318522040535787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011800509558342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.328386841299009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004720203823337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.4317321108232,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.4317321108232,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.221493,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002078561287269,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002078561287269,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00157721230478,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001922669190724,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000155892096545,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.1103877703848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.530427524035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.6636994034964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.012171009614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.208425222687286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008312726983581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.214926104530747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003325090793432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.26230815228224,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.26230815228224,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.209066,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001933743492664,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001933743492664,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001467324562234,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001788712730715,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00014503076195,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.2153831622526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.7846873773999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,69.2318446571202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.11387495096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.153419778427656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008944823451243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.158253209534441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003577929380497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.52481562686865,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.52481562686865,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.154972,Mm²,,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001303360151443,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001303360151443,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000988989682915,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001205608140085,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.77520113582584E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.9148439244009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.8003783135482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,0.600214051099752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.6222892421329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5201513254193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.720256861319702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.0876998591813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006012972228007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.090486441636718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002405188891203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.418576838748256,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.418576838748256,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.073831,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000595744680851,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000595744680851,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000312289361702,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000283455319149,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000551063829787,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,4.46808510638298E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.5112931547641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.276631949407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012263820341616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003447875143907,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.012901250214952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001379150057563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.279051225832171,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.279051225832171,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.063597,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000397163120567,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000397163120567,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000208192907801,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000188970212766,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000367375886525,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,2.97872340425532E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,230.234510507067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4305899125529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,237.141545822279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3722359650212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.06530414498621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002762055226669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.067442946177855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001104822090667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.009966115208292,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.009966115208292,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.04386,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.41843971631206E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.41843971631206E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.4354609929078E-06,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.74893617021277E-06,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,1.31205673758865E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.06382978723404E-06,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,209.502492973255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.6477428621157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,215.787567762453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.4590971448463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002125673217122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001914390001932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00219586044371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000765756000773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.129559497707793,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.129559497707793,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.052632,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000184397163121,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000184397163121,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.66609929078014E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.7736170212766E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000170567375887,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.38297872340426E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,216.922372932724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.8648958116785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.430044120706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5459583246714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.028595067743192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00230869719636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.029536341166443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000923478878544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.269085110623879,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.269085110623879,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.062866,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000382978723404,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000382978723404,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000200757446809,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000182221276596,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000354255319149,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.87234042553191E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,200.118527142161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.7759697749924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,206.122082956426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.510387909997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054868091378553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002123360115875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.056687393931894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00084934404635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.199322304165836,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.199322304165836,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.057749,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000283687943262,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000283687943262,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000148709219858,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000134978723404,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000262411347518,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.12765957446809E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,207.974870628658,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.1668458457414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,214.214116747518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2667383382966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.042208975136827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002204097180746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.043603584992402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000881638872298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.099661152082918,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.099661152082918,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.019737,Mm²,,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000141843971631,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000141843971631,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.4354609929078E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.74893617021277E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000131205673759,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.06382978723404E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,196.539526220535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2134547357784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.78755763280188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.435712007151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.0853818943114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.54506915936226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.019964827970235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00069500795612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.020627943110077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000278003182448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.014,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.089695036874626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.089695036874626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.049708,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000893617021277,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000893617021277,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000427417021277,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0004662,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000745276595745,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000148340425532,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,21.6267677642183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,22.2755707971448,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002108748082145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002321341681046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002200729364119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000928536672419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.10962726729121,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.10962726729121,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.05117,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00109219858156,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00109219858156,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00052239858156,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0005698,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000910893617021,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000181304964539,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,157.999796783996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.2985722743832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.739790687516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1194289097533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01752756127073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00231792794328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018088488912696,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000927171177312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.069762806458043,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.069762806458043,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.048246,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000695035460993,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000695035460993,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000332435460993,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0003626,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000579659574468,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000115375886525,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.085461615047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.5250651357551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.138025463498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.210026054302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.009555334297322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00219640229254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009864331201415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000878560917016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.548136336456049,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.548136336456049,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.083334,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005460992907801,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.005460992907801,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002611992907801,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002849,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.004554468085106,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000906524822695,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,143.160036865058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.751557997127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.454837971009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3006231988508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.079503594717794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003812660334133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.082064206578552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001525064133653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.787323101455053,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.787323101455053,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.100878,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007843971631206,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.007843971631206,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003751771631206,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0040922,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.006541872340426,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00130209929078,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.39210520287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.2286996577878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.123868358956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.0914798631151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.099419646248662,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003553800764078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.10265432322737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001421520305631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.986645405620889,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.986645405620889,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.115498,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009829787234043,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009829787234043,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004701587234043,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0051282,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.008198042553191,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001631744680851,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,114.571675844749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.8084306133002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.008826120091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9233722453201,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.114899895437111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004597794118975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.118662799534827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00183911764759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.039864460833167,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.039864460833167,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.046053,Mm²,,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000397163120567,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000397163120567,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000189963120567,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0002072,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000331234042553,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,6.59290780141844E-05,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.610082588658,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.7038661946855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.88343029827853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.838385066318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6815464778742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.26011635793424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004364899855967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001690323149864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004508610780317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000676129259946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.039,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,5.51126171018537,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.51126171018537,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.447372,Mm²,,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007189,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.007189,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0028756,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0043134,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005995626,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001193374,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,15.6908637966427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6995590457558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,16.161589710542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6798236183023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.094118931327987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020892075129418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.098241719930416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008356830051767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.27546342435719,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.27546342435719,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.356728,Mm²,,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005577,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005577,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0022308,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0033462,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.004651218,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000925782,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.99,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.2965715176864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.4532765290699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.945468663217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3813106116279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.383437553257647,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017284640429662,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.395948574365775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006913856171865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.46163045644808,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.46163045644808,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.223686,Mm²,,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003211,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003211,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0012844,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0019266,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002677974,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000533026,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,43.8645844662753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.2069940123839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.1805220002635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.0827976049536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.111391943551779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011230601662654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.115314004758259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004492240665062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.01973290811242,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.01973290811242,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.264622,Mm²,,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003939,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003939,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0015756,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0023634,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003285126,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000653874,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,28.5883610203087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.7044929026192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,29.446011850918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.4817971610477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.090516682499099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014211390320877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.093944052523375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005684556128351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.71716165038868,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.71716165038868,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.535823,Mm²,,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008762,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.008762,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0035048,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0052572,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.007307508,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001454492,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,12.2209787567732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.852672618724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,12.5876081194764,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.3410690474896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.091404987490619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029927146600583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.095730635716756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011970858640233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.68068566872633,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.68068566872633,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.459799,Mm²,,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00741,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00741,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002964,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004446,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00617994,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00123006,1e6 dimensionless,Own calculations,,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,6.76518466892802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.852672618724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.38670142840288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,6.96814020899586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.3410690474896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.66404171408345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046308302526197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025681003017417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.049036712140275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Denmark,dk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010272401206967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,37.7023750377,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.65,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.24,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.52975,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02535,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0949,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.39265306122449,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,12.4649397789144,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,10.7901537040092,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.102752,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.214899216513353,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.079347403020315,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.175142861458383,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008381069444021,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03137528561095,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.204605709073252,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.015882496499317,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035681092803518,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,275.405679476067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.5104939766573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.9156713905322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,357.228706848406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.25524698832863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,57.1418331823367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.41935629350612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001901990277089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.56682216385336,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000950995138545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,7.96073255238409,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.87870014849035,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.07098,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.137245363292777,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.050675211061948,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.111854971083613,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005352569168418,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020037823040746,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.158856577567275,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.011911708520647,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021356044890258,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,208.000707883127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.8155507708972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.7248847212316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,269.797718195205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9077753854486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,58.4292915914794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.72313148548463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002542187793718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.32099756779674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001271093896859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.22554033987791,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.76665923114997,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.041132,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.055609261189094,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.020532650285204,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.045321547869112,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002168761186375,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008118952133608,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.054218982793075,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.004894963797847,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019837082406617,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.522104227334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.2242621344742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,40.1452385182121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.104521393274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.6121310672371,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,63.8710744824754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.581900025452134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001448844350115,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.792839659375921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000724422175058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.87081339712919,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.45861435406699,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.038896,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.049493664690038,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.018274583885552,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.040337336722381,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001930252922911,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007226075044746,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.047556322729415,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004226940622468,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016393198300821,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.558360031796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.9152413751367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,40.8557574657356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.782048797243,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9576206875683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.0015101279853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.40877854165131,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000930207228527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.564697958679779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000465103614264,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.4464609800363,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.82690671506352,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.038428,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.0766582909998,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.028304599753772,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.062476507164837,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002989673348992,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011192110485971,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.071903219073809,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006017633766619,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019137756298593,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.1399003850892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,17.8676154613922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,41.5890233200659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.543664789499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.93380773069612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,66.1681361022248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.499265705748839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00068661672695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.701946701530685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000343308363475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.3392179508332,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.73377686850355,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.037752,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.074809389732643,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.027621928516668,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.060969652632104,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002917566199573,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010922170900966,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.073949035196457,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006059538136361,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017725912737518,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.891978499642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.1279358705828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,41.7668225694616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.620585311886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5639679352914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,66.4510147080134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.61768391167825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000797621834986,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.854462870098579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000398810917493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.394670038525,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.04513146145511,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.02549465890764,Mm²,,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041284813582296,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01524362347654,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.033647123069571,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00161010772971,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006027582783015,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.031362624547321,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002109413359087,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015381626725008,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.868644215895,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.0574447892267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.808794892819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.452618412437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.52872239461334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,61.7447926744751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.358532708503542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000383884418922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.49236615473227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000191942209461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.1304,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00624,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02336,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,10.1880877742947,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.83583542319749,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.078,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.198805024402869,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.065,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.162026094888338,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007753395951712,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.029025533562819,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.012325911512978,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026479112889892,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,291.75,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.4349921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,378.428925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.26,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7860725141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.92868170727171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00144456,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.90190101626071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00072228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.6838805477644,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.9243818676786,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.046228,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.129371228029502,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.105437550844044,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005045477893151,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018888199292307,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.11,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.008021016137829,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011350211891673,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,236.427375824502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.03,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.3949921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,306.669949181962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7224325141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.35975570936746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00175805084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.82119570680717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00087902542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.948688335258208,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.812340950338228,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.01638,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021942610634625,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017883227667219,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00085576181475,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003203621152655,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001360441859347,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010582168775278,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,245.563178038062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.8919122247492,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.3949921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,318.51999823317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.4459561123746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7224325141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.232111153261612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000735329522241,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.310661371469605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000367664761121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.593961392509487,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.504296073255238,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.014144,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013281144893858,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010824133088494,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00051796465086,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001939047154503,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000823430983419,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007457713910439,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,190.363429270179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.0559636355318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.3949921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,246.920404106349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.5279818177659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7224325141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.116428827306431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000552407549661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.157024002415047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00027620377483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.519716218445801,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.439821564098334,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.013676,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010684895148441,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00870818954598,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000416710910789,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001559994691672,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000662463499203,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005022431649238,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,173.811203349544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.7126058173999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.3949921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,225.450511864694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3563029086999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7224325141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.094321550569829,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000502081597159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.127598132445516,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000251040798579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.412473189242699,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.34669171753836,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.013,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.008734880196568,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007118927360203,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000340660327666,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001275292508699,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000541562572187,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003193317624381,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,227.317235976711,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.0305220861858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.3949921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,294.853186785392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.5152610430929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7224325141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.092996015073838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00066339678712,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.124794694010522,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00033169839356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.09717868338558,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.941289968652038,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.006916,Mm²,,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021282481420331,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01734522235757,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000830016775393,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003107242287368,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.0004,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010882481420331,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,192.313769068579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,18.4679579664099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,34.3949921522082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,249.450189858854,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.23397898320495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,54.7224325141633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.218760473862535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000127724397296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.294845247850031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.38621986478454E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.300932120154717,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.089708623196588,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.245259677926095,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011736352686034,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.043936089542589,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.23265306122449,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.824773128196667,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.704732984525986,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0051989079272,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.016094192110484,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013116766570044,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000627673492309,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002349752048131,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.012442550368216,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.00099783991085,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002653801831418,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,202.270766986728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.4679579664099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,262.365411858485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.23397898320495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.17763369887378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.60132130707648E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.240720686493845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.80066065353824E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.345947433096848,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.288920750901303,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.00218065888768,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.007874135263275,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006417420239569,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000307091275268,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001149623748438,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.006087557793946,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000488196386323,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001298381083006,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.037033203391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.2874510649122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.750735768119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.1437255324561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054309852655011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.6046599349874E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.074770639153259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.3023299674937E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.45557696848705,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.25252303943415,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.00917514208624,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.033666650554469,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.022,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027438320201892,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001312999371624,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004915330980952,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.026027960420594,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002087332334377,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005551357799498,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.338323472863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.1960745968596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.764739376651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5980372984298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.223921183852028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000286228416959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.308647029802304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00014311420848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.61950184688995,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.39487540383923,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01020843272176,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03621251979618,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029513203633886,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001412288272051,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005287027890242,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.027996192566291,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.002245176227363,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005971151002526,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.8266028391744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.9654877419901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.485086542693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.98274387099507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.208141183627364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000203816338371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.290228319871369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000101908169186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.2089639938954,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.77516433229876,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.02022751199768,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.065973395851358,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0137,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053768317618857,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002572962438203,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009632115794298,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.051004567064168,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.004090350542784,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010878478244406,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.0069338162642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.3734255613324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.8059938530763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.68671278066621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.330793842982004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000310966149987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.469193893011237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000155483074994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.12013022075565,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.69802108370421,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01966755363872,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.066074509536075,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0131,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053850725271901,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002576905871907,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009646878392267,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.051082738873375,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004096619591237,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010895151071463,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.292686747849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,17.9869079067589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.575143980635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.99345395337946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.416815893002076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000353758476051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.579662418646349,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000176879238025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.03118297310675,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.8839792938459,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0169,Mm²,,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.020002332161965,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016301900712002,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000780090954317,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002920340495647,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015463965118505,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001240144594042,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003298222449418,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.0640844025811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,12.1734622928585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.959823878588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.08673114642926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.111990789715611,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000205731512749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.158155980599172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000102865756375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,2.0639330093,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.189067879845283,1e6 dimensionless,Own calculations,,,, +Estonia,ee,,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.14734693877551,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.45207887642303,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.24948529628576,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0195530920728,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041270081862734,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.033635116718128,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001609533192647,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006025431951959,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.032163158705037,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.00255874507549,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006548178082208,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,202.270766986728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,18.4679579664099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,262.365411858485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.23397898320495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.314507490093913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000361105682514,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.42610279150414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000180552841257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,1.93090457152285,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.66529752991044,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.02257134111232,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.054878967685403,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044726358663603,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002140279739731,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008012329282069,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.042769019773329,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003402495996495,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008707451915579,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,137.037033203391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.2874510649122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.750735768119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.1437255324561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.310350381227678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000683628389409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.426697292003967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000341814194704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,0.821275036132651,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.701695241377595,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.01557685791376,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023341767808445,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019023540763883,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000910328944529,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003407898100033,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.018191022372481,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001447189604124,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00370355583184,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,129.338323472863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.1960745968596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.764739376651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5980372984298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.125694090736601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000485936821462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.173306084654596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000242968410731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,0.657350157729748,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.559342876972513,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01454356727824,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.018682796962666,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015226479524573,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000728629081544,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002727688356549,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.014560130163124,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001158333411685,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002964333387857,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,99.8266028391744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.9654877419901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.485086542693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.98274387099507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.0838017470007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000290369414219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.116917997234283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000145184707109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.7177807676951,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.611820818666425,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.00452448800232,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.020400318139221,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016626259283465,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00079561240743,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002978446448326,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.015898652009641,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001264819724632,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003236846404949,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.0069338162642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.3734255613324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.8059938530763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.68671278066621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.073366936453959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.95568795068081E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.104138559397626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.47784397534041E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.806614540834846,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.68896406726098,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00508444636128,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.022925096337692,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018683953515219,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00089407875717,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003347064065303,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.017866296323082,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001421355972937,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003637444041674,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.11,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,105.292686747849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,17.9869079067589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.575143980635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.99345395337946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.106857207653791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.14534684571989E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.148689465616851,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.57267342285994E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.266308382032668,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.219762198957169,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00167865890764,Mm²,,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.007568851049121,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0017,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006168613605033,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000295185190916,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001105052253172,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005898659428817,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000469268765045,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001200922855259,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.0640844025811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,12.1734622928585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,42.541174504047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.959823878588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.08673114642926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,67.6830086359388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.028264844000874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.04350909147266E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03999194322387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.02175454573633E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.019,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,18.113,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,18.113,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.2215398,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.133651610765164,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003152597491824,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.06333725611113,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.07027281999268,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.121041628777606,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.012609981987559,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,141.696524555283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.7651281606951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.89505068198425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,215.37871732403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.706051264278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.7901013639685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.63710020227262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022575735139695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.74225681289571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015030294055878,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.27,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.117486,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.100957672681196,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002657768657879,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.047535787066246,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.053388023349725,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.0916222182868,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.009335454394396,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,150.787370949011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.0459935989643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.03744584153349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,229.196803842497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.8183974395857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.07489168306698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.36417495239162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006702105603968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.62313879067537,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002680842241587,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,15.835,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,15.835,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.138165,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.121147197348057,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002756107838737,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.057561881234934,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.063551453847898,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.109620442799258,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.011526754548799,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.295371169369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.2305354503594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.98353823067007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.848964177441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.0922141801438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.96707646134015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.36383153034962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008321751930499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.6233020035151,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0033287007722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,16.105,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,16.105,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.148047,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.125620218080557,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002803101783571,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.059759684819168,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.065823162743461,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.113627444033391,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.011992774047167,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.90819582357449E-17,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.147568848982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.6911695525042,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.94051067737107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.264304650452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.6764678210017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.88102135474213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.11117352077191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00839295757874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.23944547531365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003357183031496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,15.88,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,15.88,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.139812,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.123990029719081,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002763940162876,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.058921136073576,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.065037166838447,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.112185263851543,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.011804765867538,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,110.138838375554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.0532922601798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.98423481817907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.411034330842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8213169040719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.96846963635813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.81227440231648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00727767489748,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.78502652299914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002911069958992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,14.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,14.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.077226,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.083031573007033,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002452387713786,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.038762300843395,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.04423777415567,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.075559695088342,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.007471877918691,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-9.54097911787244E-18,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.737309802736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.1549595624837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.09581455941845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.120710900158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8619838249935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.19162911883691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47709872226275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004027718907172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.27289087086764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001611087562869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,13.87,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,13.87,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.066246,Mm²,,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.081636649668196,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002414096351328,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.038096789187925,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043508515005029,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.074300180110812,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.007336469557384,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.4239674862736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.8358280852612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.10441388611331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.524430579136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9343312341045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.20882777222662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.36658864963501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002970194267336,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.1045402933334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001188077706934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,5.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.11163,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.087235883593837,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001453500897666,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04260600554723,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044629878046607,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.078206969641875,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.009028913951962,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,180.809619158544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,73.1351357314633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,274.830621120987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.2540542925853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.931462176305102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008164075201703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.12377394959793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013265630080681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.4,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.4,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.050874,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.058616996881235,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000976660682226,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.028628541276795,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02998845560444,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.052550137704027,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.006066859177208,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.189854694403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.1362506738553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.768579135493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.2545002695421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.518376476600053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003466363616782,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.79327511033884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001386545446713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.79,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.101748,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.082581004429739,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001375942549372,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.040332562563485,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042248441866255,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.074033870471261,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.008547133958478,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.540045874718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.692919388511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,224.260869729571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.4771677554044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.722398393081429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006989367161942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10557271268771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002795746864777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.11163,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.087235883593837,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001453500897666,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04260600554723,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044629878046607,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.078206969641875,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.009028913951962,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.883752223038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.1262322419542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.383303379018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.2504928967817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.663657289611443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007046781305169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.01671052182357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002818712522068,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.92,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.106506,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.084822242545787,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00141328545781,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041427183259362,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043395059286424,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.076043140442298,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.008779102103489,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.227458571359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.5595450953974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.505737028465,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.023818038159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.548586265448815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00613043690993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.841582564735509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002452174763972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.015006,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.04034228608885,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000672172351885,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019703172525794,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020639113563056,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.036166859478654,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004175426610196,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.350403258161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.5495266634963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,122.132612952405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.0198106653985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.195680670475701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000788558197112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.301111768011835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000315423278845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.009882,Mm²,,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.039307868496828,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000654937163375,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019197962973851,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020109905522977,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.035239504107406,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004068364389422,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.5207851088336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.8592574573232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.871593365427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7437029829293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.188771688006113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000512473182193,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.290515828789119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000204989272877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.61,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.02196,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.044997165252948,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003204419889503,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020023738537562,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024973426715386,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.041622377858977,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.003374787393971,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-3.46944695195361E-18,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,200.173660962165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,70.5410595211679,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,304.263964662491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.2164238084671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.532528298289795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001549081667085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.81427903412619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000619632666834,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.38,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.38,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.013542,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.041031897816864,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00292203806016,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018259194528505,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02277270328836,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.037954505480599,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.003077392336265,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,203.162171795538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.3989918873221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,308.806501129218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.3595967549288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.492713172997877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001197099148138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.753333880936531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000478839659255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.165,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.165,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.005673,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037325234778786,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002658072437078,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01660972947656,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020715505302226,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.034525842170377,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.002799392608409,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,196.940035675582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,92.1843391469807,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,299.348854226884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.8737356587923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.434732444855086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000522961755981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.664804804636107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000209184702392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.155,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.155,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.005307,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037152831846783,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002645794966237,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016533010171818,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020619821674964,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.034366369458274,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.002786462388509,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,181.337557980843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,95.9696864066394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,275.633088130882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.3878745626557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.399101103368167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00050931112576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.610626636760949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000203724450304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.006954,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037928645040799,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002701043585021,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016878247043156,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021050397997643,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.035083996662739,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00284464837806,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,165.735080286105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,102.983712211301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,251.917322034879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.1934848845204,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.373109550189889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000716148734717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.571202855597652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000286459493887,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.4,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.4,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.014274,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.041376703680872,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002946593001842,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018412633137988,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022964070542884,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.038273450904806,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003103252776065,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.045006363763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.540380925957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,234.14840967292,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.4161523703826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.378972422793531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001477935397337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.580484998256008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000591174158935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.38,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.38,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.013542,Mm²,,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.041031897816864,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00292203806016,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018259194528505,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02277270328836,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.037954505480599,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003077392336265,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,148.812755535618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,72.3669329052385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.86016980020852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.195388414139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.9467731620954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.72033960041704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.363361562299267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000979993005403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.556719432674644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000391997202161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.723,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.723,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0260958,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000172200088535,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000172200088535,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00013066542718,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000159285081895,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,1.29150066401062E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,114.864403765978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.9612353139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.593893724287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.5844941255751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.316634328778975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001669119604505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.483136287259666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000667647841802,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.22,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.007686,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000140390817682,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000140390817682,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000106528552457,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000129861506356,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.05293113261241E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.776314039255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.9175905607535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.779997339667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.9670362243014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.237969211239771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00053738660105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.363223182239312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00021495464042,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.22,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.007686,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000140390817682,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000140390817682,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000106528552457,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000129861506356,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.05293113261241E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.591200605958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,70.9195942471337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.898624921056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3678376988535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.226458259417852,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000545088001383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.345726535469995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000218035200553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.45,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.45,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.016104,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000154935812306,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000154935812306,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000117565294378,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000143315626383,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.16201859229748E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,85.5072342545489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.2335586121249,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.970996066914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.49342344485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.212964433598389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00098610522789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.325372359713429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000394442091156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.002562,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000131537342693,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000131537342693,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.98105356352368E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000121672041991,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,9.86530070195409E-06,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.4232679031401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.547522977116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.043367212773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6190091908464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.149427807901172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000132064753867,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.228545025127848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.28259015469485E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.065,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.065,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.002013,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000130588756087,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000130588756087,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.90907481186366E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00012079459938,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.79415670650731E-06,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,64.2011317831839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.5615487817776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.5857203104396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.424619512711,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.135501492429559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000117884397698,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.207366823035627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.71537590790873E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.055,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.055,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.001647,Mm²,,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000129956365016,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000129956365016,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.86108897742364E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00012020963764,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.74672737620945E-06,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,58.2429650743774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.1729956239106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.41702435703857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.5293069130537,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.2691982495642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.83404871407714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.12260127828156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.75759237925808E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.187751695813754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.50303695170323E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.005124,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000148686030429,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000148686030429,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.79412171507607E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.07448132780083E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000137534578147,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,1.11514522821577E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,113.751961247562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.0765764296293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.902981096294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.4306305718517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.263791828174563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000338576377625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.410191632341641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00013543055105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.11,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.00366,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0001459197787,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.0001459197787,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.64911479944675E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.94286307053942E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000134975795297,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.09439834024896E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,169.506071873957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.5675598409183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,257.649229248415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.6270239363673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.376525246653473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000225337269018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.581374743713003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.01349076071044E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.065,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.065,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.002013,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000142807745505,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000142807745505,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.48598201936376E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.79479253112033E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000132097164592,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.07105809128631E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,164.792332389142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.9015610697117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,250.484345231495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.7606244278847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.358761215328512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000124607842433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.554180270792906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.98431369733319E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.055,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.055,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.001647,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000142116182573,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000142116182573,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.44973029045643E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.76188796680498E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00013145746888,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.06587136929461E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,145.324588316855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.776201522119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.893374241619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.9104806088476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.31701765881285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.021640390693E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.490687143709955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.6086561562772E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.02,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.000366,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00013969571231,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00013969571231,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.32284923928077E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.64672199170124E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000129218533887,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.04771784232365E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.856844244568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.6508419745263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.302403251743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0603367898105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.272293488264471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.74402081626766E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.422556180349408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.97608326507065E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.035,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.035,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.000915,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000140733056708,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000140733056708,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.37722683264177E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.69607883817428E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000130178077455,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.0554979253112E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.025164407583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.7741978357388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.598249899526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.5096791342955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.278728001144705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.9203391019701E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.432401021696083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.96813564078804E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.025,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.025,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.000549,Mm²,,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000140041493776,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000140041493776,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.34097510373444E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.66317427385892E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000129538381743,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.0503112033195E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.588945188202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.5323822300625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,8.94191232200202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.735196686067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.812952892025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.883824644004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.256224986458162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.71932778443043E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.398153518193393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.08773111377217E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.21,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.00732,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000764177040111,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000764177040111,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000365505878285,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000398671161826,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000637323651452,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000126853388658,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,157.19378433962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.4379667221614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,238.934552196222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.3751866888645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.357225082992077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000464365916406,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.547698999556686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000185746366562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.002196,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000715767634855,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000715767634855,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000342351659751,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000373415975104,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000596950207469,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000118817427386,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.482793771681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.5675598409183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,225.693846532955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.6270239363673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.316563689249978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000135202361411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.485594874608414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.40809445642626E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.035,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.035,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.000915,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000703665283541,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000703665283541,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000336563105118,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000367102178423,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000586856846473,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116808437068,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,143.486229917777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.9015610697117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,218.099069475021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.7606244278847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.301043155660544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,5.66399283787862E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.461928961937404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.26559713515145E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.025,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.025,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.000549,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00070020746888,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00070020746888,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000334909232365,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000365298236515,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000583973029046,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116234439834,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,121.897303077323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.776201522119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.283900677531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.9104806088476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.255846251262381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.00721346356433E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.393208323933605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.20288538542573E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.05,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.001464,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000708852005533,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000708852005533,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000339043914246,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000369808091286,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000591182572614,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000117669432918,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.308376236869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.6508419745263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.468731880041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0603367898105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.214747546934048,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.97608326507065E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.330791651651018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.79043330602826E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.11,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00366,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000729598893499,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000729598893499,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000348967150761,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000380631742739,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000608485477178,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000121113416321,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.7293703745051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.7741978357388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.428642969248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.5096791342955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.202931138621067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000196813564079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.312958770926835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.87254256315215E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.003294,Mm²,,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000726141078838,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000726141078838,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000347313278008,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00037882780083,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000605601659751,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000120539419087,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,83.847997955894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.4989821071831,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.44652470656931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.448956892959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7995928428733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.89304941313862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.185418497591173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000344422575118,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.286318213242805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.52198588244245E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.04941,Mm²,,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000333498759305,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000333498759305,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000133399503722,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000200099255583,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000278137965261,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,5.5360794044665E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.803115978802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,5.2326859177634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.540736287779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.09307436710536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.235458487732103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000258547011197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.363176910013594,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000103418804479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.039528,Mm²,,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000306699751861,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000306699751861,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000122679900744,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000184019851117,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000255787593052,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.0912158808933E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,133.304552630576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,5.33010294282814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.622919998475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.13204117713126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.422027155650469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000210688309124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.646336998839267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.42753236496443E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.56,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.02013,Mm²,,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000254094292804,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000254094292804,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000101637717122,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000152456575682,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000211914640199,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.21796526054591E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.897303077323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,5.42751996789289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.283900677531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.17100798715715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.320438062006196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000109255976954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.491088717990979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.37023907814735E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01281,Mm²,,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000234243176179,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000234243176179,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.3697270471464E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000140545905707,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000195358808933,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,3.88843672456576E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.991771597118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,5.62235401802238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.147492827619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.24894160720895,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.262586784118679,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,7.20223549708666E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.402840489372142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.88089419883467E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.61,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.02196,Mm²,,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00025905707196,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00025905707196,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000103622828784,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000155434243176,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000216053598015,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,4.30034739454094E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.0862401169127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,6.01202211828135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.011084977707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.40480884731254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.254109743578085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000132024005717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.390348245537701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.28096022869834E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.14,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.041358,Mm²,,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000311662531017,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000311662531017,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000124665012407,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00018699751861,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000259926550868,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.17359801488834E-05,1e6 dimensionless,Own calculations,,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.5812796278676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,6.23468960414362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27381489384773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.123545034359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.49387584165745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54762978769547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.285284996798186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000257854292648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.43856748894125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Estonia,ee,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000103141717059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,194.300667467564,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.91,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.2,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.13012,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.31719,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.46269,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,2.25692307692308,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,28.5257313791446,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,28.5257313791446,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.561022,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.427223845369283,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.176174781595581,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.312727854810315,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.046567399145252,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.067928591413716,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.728443050689479,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.074581239956829,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.044489799772208,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,230.519197147967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,49.4259208280931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,230.519197147967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.9550849694842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.20270518290614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010685993704901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.5118884187157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004353473835377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,45.5948375780875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,45.5948375780875,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.834372,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.682864238612995,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.281593500458967,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.499856622664712,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.074432202008816,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.108575413939466,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.07785530946711,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.110919889675021,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.071678092619471,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,202.052398476284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.5029543573713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,50.1447697814469,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.052398476284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.57510360519306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,56.7688938695761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.3715062003832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019610207033069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.1409147862602,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007989198345272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,28.747168188371,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,28.747168188371,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.575344,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.430540257624821,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.177542374278277,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.315155468581369,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.046928888081106,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.068455900962347,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.745781804825513,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.076485180477276,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.046882792848069,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,200.823649091014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.9199727067725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,50.897988321377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,200.823649091014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.3375968807391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,57.6216125786309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.52681901988468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013186868777005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.76956940470484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005372330339752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,36.282007208073,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,36.282007208073,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.685146,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.543387947924152,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.22407750429862,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.39775997788048,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.059229286323733,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.08639868371994,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.882353206648319,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.091082057800696,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.061588119649799,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,199.175793251254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.2708088130488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,49.9321095208844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.175793251254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9249275104361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,56.5281411885932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.15201111569108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020054777575025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.61745199247919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008170316384065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,23.9802292167227,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,23.9802292167227,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.488026,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.359146820904836,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.148101781816427,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.26289547290234,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.039147003478627,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.057104344523869,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.632663014332241,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.064877285046169,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.039701576146233,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,182.301556569218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.1779230250077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,49.8986766488431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.301556569218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.7388858403881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,56.4902918341553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.02229170807755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017655767062203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.0662832597978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007192959501141,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,26.0177111965401,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,26.0177111965401,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.520674,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.38966175756741,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.16068526085254,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.285232406539344,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042473131574848,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.061956219453218,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.667105857678317,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.069217450533637,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.050238629670286,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.151856494905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.4094187332847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,49.6682566586105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.151856494905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.2035971919402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,56.229433363213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.08808792786986,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016874741689534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.15186988623913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006874769764316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,5.1529827006247,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,5.1529827006247,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.188034,Mm²,,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.077175131996503,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.031824796699589,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.05649219662144,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008412089387619,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.012270845987444,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.229606019082615,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.024996896510373,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.029452726570341,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.071299418045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,52.2490294954275,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.071299418045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.1511262917735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.768370880267617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00358155320167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.227459180342315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00145912477436,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.35,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,1.05461853407824,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.9882,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.14715,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.21465,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.35,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,22.1912542047093,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,14.076279229121,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.416262,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.423757045209258,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.174745173282168,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.310190157093177,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.046189517927809,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.067377370188272,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.38,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.037290619978415,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006466425230843,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,254.102561527372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,254.102561527372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.16599460589474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007928696399766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.09648901012386,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003230150913265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,32.5228255646324,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,20.6297656610418,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.581812,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.630226645880801,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.259887276651877,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.461325904784746,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.068694704401007,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.100206036695047,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.56,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.055459944837511,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014766701043291,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,233.050521395457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.5234760215591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.050521395457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.3982641311832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.71383585678316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014849864631055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.21666661618393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006049834850692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,18.5583853916386,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,11.7718905116642,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.368984,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.434574889075429,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.179206139824919,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.318108818803214,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.047368662909222,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.069097407362993,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.39,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.038242590238638,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006332298836791,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,240.223821961933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.73683270005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,240.223821961933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.67038564200036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.33663028262608,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008758511476995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.15443835493112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003568217575728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,26.5737626141278,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,16.8561767295451,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.486486,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.517511692049407,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.213406883319343,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.378818558580166,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.056408774433385,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.082284359035856,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.46,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.045541028900348,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011970663149059,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,224.232062152054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.635779316054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,224.232062152054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4440164933604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.53459127037474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01247144773635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.53233652376049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005080867807789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,17.6357520422874,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,11.1866489326276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.343266,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.368620937762322,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.152008634128792,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.269830526442019,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.040179682216093,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.058610729104209,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.33,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.032438642523084,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006182295239237,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,202.374954015742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.0955864903518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.374954015742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8905419361693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.78885862849225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011703855592197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.54140089215555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004768150768261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,19.6732340221048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,12.4790574196668,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.375914,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.39328096894112,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.162177719150977,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.2878816692649,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042867625614582,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.062531674061638,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.35,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.034608725266819,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008672243674302,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,194.496585444869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.0041161115096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.496585444869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.223676903829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.02238361098876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011278967303942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.81294839780702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004595051279626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.70062469966362,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,1.71305087197185,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.043274,Mm²,,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.142027821081664,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.058568173641924,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.103964365031778,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015481032497902,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.022582423551985,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.012498448255187,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009529372826478,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,188.467743088429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,46.9563189646209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.467743088429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.1592486998473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.405579711768142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000824255896535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.46641801169057,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000335801852248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.08,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.79056,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.11772,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.17172,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.906923076923077,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,2.4328962037482,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,1.54322626308164,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.021406,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.403031419141669,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.295018998811702,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043930424686442,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.064081995643525,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.338443050689479,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.035466764884467,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.029121603567724,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,147.900786893403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.900786893403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.333310215053729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000407728005759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.388206323788823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000166108389546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.62511148486305,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,14.291151284491,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.604774261655491,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.442694759531819,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.065920394520449,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.096159107603223,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.507855309467111,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.053220135025683,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.043698817162697,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.92987567768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.4759490603823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.92987567768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.52710164719976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.74785947784778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000554278471811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.95799177567204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000225813049416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.09603892359443,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,14.906438312718,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.399862301929619,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.292699205012481,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043584990910329,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.063578106006809,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.335781804825513,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.035187882569807,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.028892614534299,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.05809993531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.4321009100435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.05809993531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.73143791075173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.89736355034813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000642963027301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.12735991720064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000261943137323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.52852330610283,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,7.6371709483032,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.479138169749143,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.350729140256372,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.052226060502657,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.076182968990114,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.402353206648319,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.042164158937925,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0346208041629,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,130.590856466608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.2207446653796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.590856466608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9785313766757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08439856799708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000392207446654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.2293436807708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000159785313767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.1344819798174,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,6.86330478908976,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.336606337678089,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.246395839180361,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036690090806912,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.053520407690816,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.282663014332241,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.029621357715672,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.024321965630176,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,126.50350571648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.9661967919562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.50350571648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.097028573043,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.947303290395576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00041966196792,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.07432304383593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00017097028573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.86538058625661,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,6.31144941325722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.365713845784866,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.267702535114522,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.039862809190551,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.058148501479794,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.307105857678317,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.032182818429068,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026425169677481,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.3601176150911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.8678869523584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.3601176150911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2421771443908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.618946520386188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000398678869524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.70820933501369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000162421771444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.597,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,1.01300348874088,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.131054,Mm²,,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.035256022724336,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.014,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025807408634214,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003842906476953,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.005605707613169,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.029606019082615,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003102529999742,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002547473641979,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,30.0420280134451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.0420280134451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.11110537600346,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002496234049649,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.135434785717046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001016965751827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,32.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.48,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.403076923076923,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.90158097068717,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,2.474837279218,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.123354,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.020725626067589,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015171158281475,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002259093241367,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.003295374544747,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001823855093948,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008901770973641,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,147.900786893403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.900786893403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.53452210184133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002349569299376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.622557757812036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000957214532566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,10.446900528592,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,14.291151284491,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025452384225311,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018631145252927,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002774309880559,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.004046929091824,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002239809811827,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013212574413483,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,124.92987567768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,18.4759490603823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.92987567768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.52710164719976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.15759192402542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000554278471811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.47227125371168,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000225813049416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,7.09274387313791,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,14.906438312718,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03471258714581,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025409613790733,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003783671998893,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.005519301356184,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.003054707668831,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011657879476979,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,129.05809993531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.4321009100435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.05809993531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.73143791075173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.10672482134018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000642963027301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.39014165726529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000261943137323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,6.17972128784238,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,7.6371709483032,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.038373522300264,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.028089418323793,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004182713930729,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.006101390045742,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003376869962423,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014996652337841,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.590856466608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.2207446653796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.590856466608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9785313766757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.22327751605952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000392207446654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.40365887983922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000159785313767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.20999519461797,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,6.86330478908976,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.032014600084233,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023434687261658,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003489591409181,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.005090321413393,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002817284807412,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00919731527682,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,126.50350571648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.9661967919562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.50350571648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.097028573043,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.951258934564193,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00041966196792,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.07928800728299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00017097028573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.47909658817876,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,6.31144941325722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027567123156254,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020179134150378,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003004816424032,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.004383172581844,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00242590683775,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015141216318504,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,82.3601176150911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.8678869523584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.3601176150911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2421771443908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.651095093726648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000398678869524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.748560914859243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000162421771444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.855358000961076,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.532567713898558,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.013706,Mm²,,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.106771798357329,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.078156956397565,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011638126020949,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [MIl.],,0,0.016976715938815,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.009395918255445,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017375880101884,1e6 dimensionless,Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,30.0420280134451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.0473701653426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,58.07755240361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.0420280134451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.75989860536058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,65.7495970761269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.059237407147705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000261063255486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.072238858099029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000106357170285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.475971130814598,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,11.7080152671756,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,11.7080152671756,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.2191,Mm²,,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.083312453541529,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.0099,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029159358739535,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.054153094801994,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.075803139462215,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.007509314079314,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,214.210414661476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.94890663773244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,237.773560274238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.92204582818415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.54250464918061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.120196628923573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.82977584625641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039670786412486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,22.3945801526718,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,22.3945801526718,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.6764,Mm²,,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.131984260414904,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046194491145217,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.085789769269688,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.120680605769255,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.01130365464565,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.73472347597681E-17,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,204.847648936098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.3261697953365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.40999054517853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.380890319069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1974211263211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20528742508744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.641447819617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.186048330635575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.31388063958972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.060577399028807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,16.9656488549618,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,16.9656488549618,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.9354,Mm²,,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.134407598057789,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.047042659320226,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.087364938737563,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.123175943474201,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.011231654583587,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.682657132751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.1712818395324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.5329905652555,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.007749417354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.2216614622317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.36887745178982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.02354409930397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.164885180711763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.36558819249368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.059358665056235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,21.1068702290076,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,21.1068702290076,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.4736,Mm²,,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.165473111817685,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.05791558913619,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.107557522681495,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.151547805201085,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.0139253066166,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.112810823828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.4222963379882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.59491529566796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.06522001445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6720266816758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.45123734323839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.30760963908708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.199462088559636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.68349621827486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.071806351881469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,10.1908396946565,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,10.1908396946565,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.0124,Mm²,,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.093106302801165,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.032587205980408,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.060519096820757,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.085371617602847,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.007734685198318,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.73472347597681E-17,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.603238505012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.3570161673108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.5967642618584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.839594740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.0885258202319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.45369646827168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.53066415033414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.123474859335096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.70485911270072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044450949360635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,15.1812977099237,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,15.1812977099237,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.6923,Mm²,,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.139906860257375,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.048967401090081,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.090939459167294,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.12844500851902,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.011461851738355,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.56125112837913E-17,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.126039623278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.4970027468544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.48714330513982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.249903981838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.8589209888676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.30790059583596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.57298257670909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.170952980495356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.75431743399885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.061543072978328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.23282442748092,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,2.23282442748092,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.3042,Mm²,,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013514773464512,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004730170712579,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008784602751933,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.012340088269734,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001174685194778,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.4237784451641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.6705618758422,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67490160824962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.4237784451641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.0814022753032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55761913897199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.20117453370705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013588784922631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.203145486972212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004891962572147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,2.39503816793893,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,2.39503816793893,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.4303,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.038502218491426,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.010918086860913,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.013475776471999,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.025026442019427,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.034517238877563,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003984979613863,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.082004098985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.201024549874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.487026556217357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031367946206036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.541793523334485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007692460634173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.53770992366412,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,2.53770992366412,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.4511,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.040363352920014,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.011445849367785,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.014127173522005,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.026236179398009,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.036185745892793,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.004177607027221,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,209.609031996759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.182175160616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.666025516402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6255830578217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.537677715662625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020832779214954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.748087439301975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007499800517383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.98473282442748,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,1.98473282442748,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.3744,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.033500419714594,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.009499725123694,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.011725146900108,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.021775272814486,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.030033126274134,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.00346729344046,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.289857419243,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6439969122221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,190.13174173536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7918388884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.344462276435952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017463512443936,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.383342615107292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006286864479817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.11068702290076,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,3.11068702290076,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.5018,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.044899868089699,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.012732270478285,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.015714953831395,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.029184914258304,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.040252731742415,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004647136347284,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,134.424323801453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.9124771592444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.210999419613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.448491777328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.425201238550716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021533481038509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.473524207357946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007752053173863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.00190839694657,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,1.00190839694657,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.2405,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021519366830555,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.006102253985706,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.007531778390694,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.013987588439861,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.019292112363593,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002227254466962,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.361293827691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.1809574062666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.681036148737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.105144666256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.150914886462388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009423020256207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.168015025260056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003392287292235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.52671755725191,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,1.52671755725191,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.312,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027917016428828,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.007916437603079,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00977095575009,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.018146060678739,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.025027605228445,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002889411200384,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.1582297546843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.6546712397026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.9556350277,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.8356816462929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.153319641927918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011124257426787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.170945947357978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004004732673643,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.400763358778626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.400763358778626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0546,Mm²,,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004885477875045,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001385376580539,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001709917256266,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003175560618779,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004379830914978,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000505646960067,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,86.9786817551432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2662270763767,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.546336748209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6958417474956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.035766052800156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00192553599837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.039900119122895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000693192959413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.52862595419847,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,2.52862595419847,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.4485,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.040130711116441,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003080357142857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.014045748890754,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.026084962225687,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.037120907782708,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.003009803333733,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,258.208595217284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,286.611540691185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.659669471221943,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022271726408104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.733719546523203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008017821506917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.13549618320611,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,6.13549618320611,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.9399,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.084100011991846,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.006455357142857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.029435004197146,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.0546650077947,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.077792511092457,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.006307500899388,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,232.747399438168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.0728160760967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,258.349613376367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.3462137873948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.44441489272533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.058342239829923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.60690723552581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011003206338772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,7.12786259541985,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,7.12786259541985,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.0751,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.096197385777671,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.007383928571429,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.033669085022185,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.062528300755486,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.088982581844346,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.007214803933325,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,193.76884133253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.6935442368577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,215.083413879108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5696759252688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.40020340184488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.067401829409046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.55841583566945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024264658587257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.70229007633588,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,8.70229007633588,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.2896,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.115390334572491,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.008857142857143,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.040386617100372,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.075003717472119,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.106736059479554,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.008654275092937,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,173.088176132306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.7090277758063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.12787550686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.3752499992903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.52951613021046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.08731756221968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.70287847933272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031434322399085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.85687022900763,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,4.85687022900763,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.7657,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.068513011152416,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005258928571429,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.023979553903346,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.044533457249071,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.063374535315985,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.005138475836431,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-6.93889390390723E-18,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,188.523745086096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.7245113147549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.261357045567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.1808240733118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.92861297448297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.055685158313708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.03361547576902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020046656992935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.14885496183206,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,8.14885496183206,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.2142,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.108643722268857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008339285714286,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.0380253027941,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.070618419474757,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.100495443098693,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.008148279170164,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.389315276642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.4517564279025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.412139957073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.4426323140449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.986511187362101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.089185122654759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.0998176601632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032106644155713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.66793893129771,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.66793893129771,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.091,Mm²,,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008142463125075,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000625,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002849862093776,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.005292601031299,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.007531778390694,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000610684734381,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.409905555708,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.67201076029949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.774995166836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.55377431119832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.076867692195807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00451890101034,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.085715781139908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001626804363722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.868320610687023,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,0.868320610687023,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.2223,Mm²,,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000888888888889,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000888888888889,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000311111111111,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000577777777778,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000822222222222,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,6.66666666666667E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,209.668975953861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.732563308786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.182911598285914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011039029610973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.203219249206942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00397405065995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.79961832061069,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,4.79961832061069,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.7579,Mm²,,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003030539311241,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003030539311241,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001060688758934,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001969850552307,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.002803248862898,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000227290448343,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,165.100643848452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.1274956183564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.261714671781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.4858984226083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.797127851189294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041023228929152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.885847625590639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014768362414495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.73664122137405,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,1.73664122137405,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.3406,Mm²,,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001361923326836,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001361923326836,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000476673164392,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000885250162443,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001259779077323,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000102144249513,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,155.554568679942,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.6687705745399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.665571234736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.6807574068344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.271845886229717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018620183257688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.302123683934141,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006703265972768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.42175572519084,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,1.42175572519084,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.2977,Mm²,,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001190383365822,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001190383365822,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000416634178038,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000773749187784,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001101104613385,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,8.92787524366472E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.707230717593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.288486546977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.505026096528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.0238551569117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.218506929567113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014077782445035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.242849492823089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005068001680213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.438931297709924,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,0.438931297709924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1638,Mm²,,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000654970760234,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000654970760234,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000229239766082,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000425730994152,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000605847953216,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,4.91228070175439E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,164.845882030768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.9082025194141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.978929054152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3669529069891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.072786549141711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00653696357268,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.080887786635657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002353306886165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.648854961832061,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.648854961832061,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1924,Mm²,,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000769330734243,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000769330734243,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000269265756985,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000500064977258,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000711630929175,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.76998050682261E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.764656401565,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.4953508721321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.688768605737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.3783263139676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.094567704537699,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008753305507798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.105110168602245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003151189982807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.190839694656489,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.190839694656489,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.026,Mm²,,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000103963612736,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000103963612736,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,3.63872644574399E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,6.75763482781027E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,9.61663417803769E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.79727095516569E-06,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.114530923423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.2518200551432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,0.980864709477028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.347129324999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8506552198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.30455006360445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.019674693823073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001072547321434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021880091486375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000386117035716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.0324427480916,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,2.0324427480916,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.3809,Mm²,,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001993197278912,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001993197278912,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000697619047619,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001295578231293,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001843707482993,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000149489795918,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,204.978361310622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.15577162499377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.52598105479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.18717626124171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.4291180373596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018914828514708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.479073497216744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006809338265295,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.61259541984733,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,1.61259541984733,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.3237,Mm²,,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00169387755102,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00169387755102,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000592857142857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001101020408163,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001566836734694,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000127040816327,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,176.564925644228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.182175160616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.18959454601022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.987067465093,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6255830578217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.23216074619359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.294709102215173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014949170099491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.329322992058276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005381701235817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.90648854961832,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,0.90648854961832,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.2275,Mm²,,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001190476190476,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001190476190476,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000416666666667,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00077380952381,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00110119047619,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,8.92857142857143E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,174.586775059858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6439969122221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.18959454601022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.791320316443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7918388884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.23216074619359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.163871709089289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010611509297531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.183131972337314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003820143347111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.2118320610687,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,1.2118320610687,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.2691,Mm²,,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001408163265306,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001408163265306,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000492857142857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000915306122449,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001302551020408,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000105612244898,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.0842021724855E-19,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.655409323411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.2799372673166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.18959454601022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.667504348986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.860777416234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.23216074619359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.194917132551684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011108431118635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.218008181937861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003999035202709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.49618320610687,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,0.49618320610687,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1716,Mm²,,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000897959183673,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000897959183673,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000314285714286,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000583673469388,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000830612244898,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,6.73469387755102E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,178.603020185699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.915877622411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.18959454601022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,198.249352406126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.929715944068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.23216074619359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.091690992042451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006163164600006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.102452659197716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002218739256002,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.181297709923664,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.181297709923664,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1287,Mm²,,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000673469387755,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000673469387755,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000235714285714,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000437755102041,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000622959183673,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.05102040816326E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,168.892099135159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.5849417133245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.18959454601022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.470230040027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6105790167968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.23216074619359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.031741910113953,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005223281998505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.035480395276128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001880381519462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.200381679389313,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.200381679389313,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0273,Mm²,,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000142857142857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000142857142857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,5E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,9.28571428571428E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000132142857143,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.07142857142857E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,168.037897746454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.4476431841938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,6.18959454601022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.522066498564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.4811515463098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.23216074619359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.034911997501353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001022320658928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.039025179123473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000368035437214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.219465648854962,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,0.219465648854962,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.1339,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001150837988827,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001150837988827,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000402793296089,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000748044692737,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000959798882682,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000191039106145,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,193.214359729335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,214.467939299562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.043079405033036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006649240058071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.047966747432197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002393726420906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.706106870229007,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,0.706106870229007,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.2002,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001720670391061,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001720670391061,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000602234636872,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00111843575419,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001435039106145,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000285631284916,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.784395065335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.1685052750511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,190.680678522522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3406618990184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.123471457871752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009643334756065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.137531447827601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003471600512183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.381679389312977,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,0.381679389312977,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.156,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001340782122905,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001340782122905,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000469273743017,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000871508379888,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001118212290503,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000222569832402,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.012554792894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.6501903278016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.183935820112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5140685180086,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.057286427711981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007589429691137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.063846383187303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002732194688809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.591603053435114,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,0.591603053435114,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.1846,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001586592178771,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001586592178771,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00055530726257,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001031284916201,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001323217877095,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000263374301676,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.315076723299,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.0554184401044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.189735162862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.4999506384376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.087198126691024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007948030244043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.097190515688893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002861290887856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.019083969465649,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,0.019083969465649,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1066,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000916201117318,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000916201117318,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000320670391061,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000595530726257,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000764111731844,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000152089385475,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.499945140866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.4606465524072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.154939106361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.4858327588666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003121714331171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003993304922487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00347802532895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001437589772095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.209923664122137,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.209923664122137,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1326,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001139664804469,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001139664804469,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000398882681564,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000740782122905,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000950480446927,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000189184357542,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.288474633174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.3305306042201,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.410206842823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2389910175193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025687594750045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00561302835812,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.028655376807402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002020690208923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.124045801526718,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Covered area: heated [Mm²],,0,0.124045801526718,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0169,Mm²,,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000145251396648,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000145251396648,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,5.08379888268156E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,9.44134078212291E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000121139664804,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.41117318435754E-05,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.439877534259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.0349337667111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.07788581249688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.808264063028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.052576156016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.09358813062085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014329493544922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000659690380657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01598973357364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000237488537037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.66412213740458,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Covered area: heated [Mm²],,0,3.66412213740458,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.6032,Mm²,,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000646599777035,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000646599777035,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000226309921962,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000420289855072,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000539264214047,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000107335562988,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,199.883124956943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.870268702207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.740699581062762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029953858125681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.824003282542839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010783388925245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.6030534351145,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Covered area: heated [Mm²],,0,6.6030534351145,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.0036,Mm²,,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001075808249721,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001075808249721,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000376532887402,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000699275362319,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000897224080268,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000178584169454,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,216.427657117122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.6582528608774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,240.234699400006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8769710299159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.44404679995282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.049837022571177,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.60618389928543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017941328125624,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.82824427480916,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Covered area: heated [Mm²],,0,4.82824427480916,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.7618,Mm²,,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000816610925307,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000816610925307,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000285813823857,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000530797101449,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000681053511706,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000135557413601,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.499945140866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.3826218254432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.154939106361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2177438571595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.785874397992153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040666881306623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.874727702258178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014640077270384,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,6.06870229007634,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Covered area: heated [Mm²],,0,6.06870229007634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.9308,Mm²,,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000997770345596,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000997770345596,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000349219620959,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000648550724638,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000832140468227,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000165629877369,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,138.170821120334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.106990790009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.369611443571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.5585166844032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.852270081516083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.05315518702734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.949045341134357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019135867329843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.37786259541985,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Covered area: heated [Mm²],,0,3.37786259541985,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.5642,Mm²,,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000604793756968,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000604793756968,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000211677814939,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000393115942029,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000504397993311,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000100395763657,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.6736415516076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,58.2491306058092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.6577421222844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.9696870180913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.283537033873447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032864159487798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.316410140509326,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011831097415607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.46564885496183,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Covered area: heated [Mm²],,0,4.46564885496183,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.7124,Mm²,,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000763656633222,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000763656633222,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000267279821628,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000496376811594,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000636889632107,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000126767001115,1e6 dimensionless,Own calculations,,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.6932565658735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.3912704216094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2661357081021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.3695147881196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.3808573517794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.01396049177579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.281154538017372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042310341048355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.314307885791899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Finland,fi,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015231722777408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,2619.00356573551,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,33.89,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,14.88,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,22.0285,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.54077,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,5.32073,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,23.6699797979798,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,478.480229048982,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,295.203001323222,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,36.245564,Mm²,,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.19155131158291,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,2.71850939853508,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.02450835252889,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.1949694031355,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.972073555918517,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,5.44924328831899,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.479917526104139,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.645051871934946,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.61314458065142,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.04866039180171,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.39037948377915,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.91462722773878,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.679394873370638,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.320508964323835,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,0.790817569621891,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.209119688197432,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.961623055277032,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.038376944722968,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.961623055277032,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,ROOF,construction material,,insulation,0,0.334201248504059,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.038376944722968,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,214.880614666154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.0342297833331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.1806784292181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,286.414371288516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.6117053544982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.1806784292181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,73.0894580128035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.05236203380251,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,94.2064376636498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.565855065575608,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,370.788516598313,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,228.757214741159,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,25.483782,Mm²,,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.79801669303487,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,2.10665353769132,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.11871085047267,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.92601722175573,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.753288620806475,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,4.93606302497365,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.438048671147105,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.626555031921774,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,2.76723083665505,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,3.81746770457249,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2.18788425819646,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.6513443036918,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.290961454181188,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.709038545818812,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,0.553394411169314,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.446605588830686,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.553394411169314,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.446605588830686,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.844355865350502,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.155644134649498,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.844355865350502,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.844355865350502,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.155644134649498,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,150.098122335367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.8931931157499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.9725713277729,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,200.065787260811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.5815699383387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.9725713277729,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,41.7416284985953,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.78114289664567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,53.1720923540593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.957720535526378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,408.519693569605,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,252.037350932446,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,27.59509,Mm²,,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.28625947524657,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,2.32102511040628,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.43606865891027,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.02024807872259,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.829942737613712,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,5.27821933967971,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.46774567803234,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.661510023826858,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.14778040649329,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,3.49272365654538,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.02971037826985,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.13170685507548,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.643551228382551,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.643551228382551,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.356448771617449,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.511848161688103,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.488151838311898,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.868296933305552,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.131703066694448,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.868296933305552,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.868296933305552,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.131703066694448,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.511848161688103,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.353969278137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.2190228214005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.0130764740943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.066105650828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.0880685710671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.0130764740943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,50.3551869534736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.0822524644686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,64.396726219634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.581927150144767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,391.511258995589,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,241.543146800279,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,26.643356,Mm²,,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.06616972231357,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,2.22439083706184,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.29301031950382,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.977770756406519,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.79538864640323,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,4.95933852327378,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.439754378489955,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.62493968029045,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.437230951675067,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.82579306255559,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.499857693447969,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.643207826860362,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.671509042395494,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.671509042395494,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.328490957604506,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.328490957604506,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.554106136970056,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.445893863029944,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.328490957604506,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.671509042395494,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.328490957604506,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.328490957604506,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.671509042395494,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.671509042395494,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.664428824166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.9408877784313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.9957840365392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.832317179731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9484153584625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.9957840365392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,37.6988698681975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.691152308036795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,47.6326911687232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.371632596031385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,258.415228662075,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,159.422896084501,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,20.024951,Mm²,,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.34390231992611,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.46819907112719,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.17353650795197,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.64537314774574,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.5249926642284,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,3.11740543164096,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.278195756804445,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.415299589697676,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.333800868393472,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.6447132804312,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.377939811349004,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.380731846084743,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.476628237760144,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.523371762239856,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.476628237760144,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.913280431202276,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.523371762239856,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.960023955681988,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.5082140600895,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.6031536769264,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.8173320975061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.640998520693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9176157320833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.8173320975061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.5936446338377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.59280170182592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.0786546074682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.318749475071797,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,385.135030565658,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,237.609013859011,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,26.286564,Mm²,,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.98366109792012,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.18816397571707,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.23937971364808,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.961846591898584,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.782434792373459,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,4.87124193792978,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.432047893624245,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.615174464668509,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.316797934540194,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.216460790420124,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.294734283016214,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.658686785477487,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.341313214522513,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.658686785477487,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.317373570954974,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.682626429045026,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.317373570954974,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.317373570954974,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.682626429045026,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.682626429045026,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.9727492318889,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.402401056032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.9889077223064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.929877451185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4981710478284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.9889077223064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,26.2254566394697,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.904320917113054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,32.3931042782685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.486253357131689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,326.153608295287,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,201.217476318192,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,18.252682,Mm²,,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.22043937997584,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.85305806946121,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.7432855969843,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.814544800335337,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.662608982656207,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.71060115889593,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.329997245099422,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.479911802846042,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.192351465939122,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.139117019018236,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.203090433436175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.194050459876576,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.805949540123424,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.194050459876576,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.194050459876576,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.805949540123424,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.805949540123424,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.3356201284921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,17.3051261543731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.9126300420685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.4239480692671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.30496633320643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.9126300420685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,17.427852495309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.315864964665656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,21.0675401943675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.169840591500723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,19.04,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,12.376,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.67472,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.98928,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,15.92,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,300.208929815058,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,185.222509695891,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,21.534389,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.03974747623098,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,2.11,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.62583585955014,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.77967126291258,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.634240353768264,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,3.37777204945364,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.294901565764862,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.367073861012484,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.617,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.35625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.8125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,243.890643076003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.462517701866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,325.081838156004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6157957682933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,51.3016390242506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.505250983111368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,66.3400759421771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.271673453618983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,107.885165983131,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,66.5587474115917,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,10.772607,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.65337622616209,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.01,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.07469454700536,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.319101611649284,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.259580067507449,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.38244482775738,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.120696464509833,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.15023493389488,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.205,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.9625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,197.910051080036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.3937974962776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,263.79430708458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9558449137485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.3747027192869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.359738256664982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.7598762730939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.193431260608761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,145.616342954422,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,89.8388836028786,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,12.883915,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.17008793205039,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.19,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.41055715583276,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.418826970885726,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.340703805331912,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.81448528772281,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.158416419039679,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.197186225287907,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.932,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.715,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,225.314115327732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.779920963013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,300.321184320334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3995635018121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,23.2141619735524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.345030225394177,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,29.9527133141719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.185522752194449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,128.607908380407,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,79.3446794707111,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,11.932181,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.88556132090139,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.08,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.2256148585859,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.363913334933968,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.296033127381518,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.57658278512343,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.137645976425801,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.171332559352157,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.445,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,194.500668507189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.7764675373058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,259.249941053231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7846065948093,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.0576253062479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.283705114195757,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.1851355823754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.152548239903058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,10.3304186334442,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.3674682968351,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,5.313776,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.146369048070473,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.095139881245808,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028249226277601,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.022979940547064,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.122384204058925,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.010684940509145,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013299903502404,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.366928493161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.7567235959765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.422778988534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.6985902775566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.18741452201808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.115610355682934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.51251103141532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.062163688250714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,122.231679950476,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,75.4105465294436,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,11.575389,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.790192174984,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.05,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.1636249137396,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.345507089771912,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.281060171472488,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.49684135639418,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.130684028773832,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.162666789815983,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.3225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,106.907180027497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.4299366706219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.49658025865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.6736769477934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.5568149843564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.294361409207814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.2406311064428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.158278129731041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,63.2902576801052,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,39.0436889886249,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.541507,Mm²,,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.856805343745592,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.556923473434635,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.165363431342899,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.134518438968058,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.716404468089801,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.062546790093428,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.077854085562362,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.9160439027479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,20.6788291609666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.1923949179727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1190064398518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4111250992548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.90447457356076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073234218225368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.77422549440064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03937803913978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,9.48373768079928,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,9.34656460534249,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.16442949251953,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.83036137239426,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.48894681588549,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,7.7499797979798,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,159.908689932678,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,98.6572616884624,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,8.947945,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.15180383535192,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.5,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.39867249297875,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.415298140222922,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.337833202150252,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.75842445399517,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.157081679980691,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.236297701376068,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.66666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,166.027716750167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.416994863314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.298343656297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6568181380039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,19.544849619855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.343753157102216,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,24.9976983222185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.184836072573862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,205.192292811267,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,126.597244664552,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,11.481861,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.14464046687278,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.88,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.0440163034673,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.606915610106446,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.493708553299026,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.56975687333855,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.229558754081713,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.345324839452512,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,130.477992517614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.8711055138863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.914116226727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.6351934348167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,20.5794445801269,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.974478236426776,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,26.0783381606093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.523976947726678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,209.100054166989,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,129.008333421032,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,11.700526,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.11617154319618,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.91,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.02551150307752,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.601421107836863,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.4892389322818,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,2.5464924610583,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.227480522653321,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.342198559484556,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.2511281196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1087658315886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.276228670615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.7926833876452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.587157651528,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.539496813440413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,27.3957708357288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.29008743658691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,216.938791302329,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,133.844834233537,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,12.139155,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.18060840141218,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.95,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.06739546091792,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.613857421472551,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.499355519021712,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,2.59914937399995,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.232184413303089,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.349274614109139,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.0125287937957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.9996858478208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.64479962925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5177310803732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,16.2076512175043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.327753371458003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.173777595439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.176232987832968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,225.675152828291,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,139.235169295055,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,13.457207,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.19753327185564,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.1,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.07839662670617,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.617123921468138,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.502012723681335,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,2.61298014499289,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.233419928845462,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.351133198017287,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.6408907984503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.9298843119254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.819143345254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.0932987945223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.8339826710393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.402772648671632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.6181512655374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.216570853190737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,218.045345508009,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,134.527578178442,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,12.201074,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.19346892293613,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.97,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.07575479990848,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.616339502126672,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.501374620900972,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.60965881504068,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.233123231374337,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.350686876521111,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.315,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.315,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,64.5202615542606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.5739697810339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.999056625674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7412235512619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.9954401783093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.470643859772158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.8849304614576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.25306520339949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,248.463978952256,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,153.295875013542,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,13.903197,Mm²,,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.36363403623025,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.14,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.18636212354966,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.649181368992438,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.528090543688149,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.74871540166689,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.245545284644808,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.369373349918545,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.306600447604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,16.4928313551029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,68.3865677366114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86819541963885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.7828398891523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.229303083417773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.4011284199233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.123296267953737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-323.39,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.36626231920072,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,4.3900202020202,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,18.3626093012458,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,11.3233299388687,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.76323,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.382661374775164,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.248729893603857,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.073853645331607,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.060077835839701,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.313046784870183,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.027934280358587,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.041680309546395,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,166.027716750167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.416994863314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.298343656297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6568181380039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.2434305096709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.221405977306097,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.86927805405713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.119049993997488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,57.7110578039155,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,35.6013226650159,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.229314,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.20265003500766,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.781722522754978,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.232111456756478,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.188816055496202,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.983861323877717,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.087793452555559,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.130995258574383,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.477992517614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,84.8711055138863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.914116226727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.6351934348167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.78744135031137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.27407544923147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.33382480579707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.147370369051762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,53.8032964481931,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,33.1902339085352,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.010649,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.12121556629234,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.728790118090019,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.216394604294421,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.176030843907897,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.917241590898601,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.081848736339341,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.122125239054396,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.785,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,135.2511281196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,46.1087658315886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.276228670615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.7926833876452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.55392403522228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.138817309742106,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.04831765426577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.074642067448331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,45.9645593128531,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,28.3537330960303,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.57202,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.957862859740613,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.622610858831399,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.184867531929938,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.150384468979276,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.783606364150394,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.069923988761065,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.104332506829154,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.0125287937957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,26.9996858478208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.64479962925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5177310803732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.43359590327462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.069443731994312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.27378140157238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037339894693342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,22.4096572003405,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,13.8203584926101,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.253968,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.466998458216972,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.303548997841032,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.090130702435876,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073318757940065,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.382041082589148,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.034090887449839,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.050866488177985,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,81.6408907984503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.9298843119254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.819143345254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.0932987945223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.57185189756704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.037531117170857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.94746509096657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02018048170277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,44.8580051071733,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,27.6709891511259,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.510101,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.934803198302413,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.607622078896569,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.180417017272366,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.146764102133479,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.764741766494922,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.068240633476076,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.101820798331415,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.5202615542606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.5739697810339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.999056625674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7412235512619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.67319628556414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.096824560121343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.26753579096447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.052062565977246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,14.3993716629266,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,8.87801231602569,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.807978,Mm²,,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.300070826865558,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.195046037462613,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.057913669585053,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.047111119817893,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.245481289139237,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.021905170361186,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.032684367365135,1e6 dimensionless,Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.306600447604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,16.4928313551029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,68.3865677366114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86819541963885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.7926061568531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.740501722897694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013325844892633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.892137882846818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007165306798769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.473,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,367.71,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,367.71,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,98.159445,Mm²,,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.23893956745498,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.612579683099786,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.915665644952377,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.32327392250261,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.35,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.268207414582158,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.620732152872824,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,188.798498467626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.85385804105461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.566333299064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.84147687296044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,71.9433280118068,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,7.48969629249089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,80.5007358783552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.1942299237949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,73.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,73.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,18.51555,Mm²,,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.48507573355224,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.121946188036508,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.204477195398682,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.280598538153559,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.436200938449615,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.056919097781566,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,189.218567717456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.2652215079734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.66712754979466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.032610166376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,44.9485240444651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.60059453923511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.3388328935627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.48615472209196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.1939505844507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.832246644371496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,49.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,49.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,12.033756,Mm²,,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.349636351711565,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.08176391951956,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.145176494260192,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.204459857451373,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.314919623234408,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.041146114683537,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.995839320128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.6703638910753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.92353240502016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.705381645343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.7354037790022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.93135680247601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.24148276427029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.982801231496411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.39921112301893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.55036868963799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,117.65,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,117.65,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,30.568227,Mm²,,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.915019024232225,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.195996844569606,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.375084186663687,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.539934837568538,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.682937201682563,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.107742277876762,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.124339544672899,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,134.396963343315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.4544586943253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.11959710302909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.180629311079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,44.4944968688222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.18428026290752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,16.6494233365123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.42878192953026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.8216316113795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.36011788053695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,136.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,136.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,35.655273,Mm²,,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.0377489158848,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.227349675974621,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.4343362327269,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.603412683157904,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.756935031796501,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.120798496538256,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.160015387550047,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.747613955362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.1956906147811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.06064234303826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.829851490451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.5495867442774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.10822862251935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.7125927370426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.64546760429356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.6944197930171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.48146185840439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,105.82,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,105.82,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,27.370578,Mm²,,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.792192770616074,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.17628887456316,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.32895205755072,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.463240713065354,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.583764662784929,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.092551859192904,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.115876248638241,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.9303912277482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.867418077522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.21379395482575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.1727342628004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.0457541234123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.30579420172522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.69249767601997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.10390566214943,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.97607788211611,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.17818717080368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,34.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,34.26,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,8.02791,Mm²,,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.311705000605552,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.057074814236759,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.142380823383622,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.16932417722193,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.279557581567353,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.034448675011597,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.1526726261035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.0789200628149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75393802145321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.7794666149749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.2041952351763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.42258004767464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.94962048078529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.490336073161472,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.38956211866237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.404588200970424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,60.37,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,60.37,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,16.112583,Mm²,,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.781189963529288,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.090891297801867,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.382783082129351,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.398406881399937,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.39,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.080853161225281,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.310336802304007,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,190.377864965389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.319430111582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.7381514355069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.22941152690454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.2634552443709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.68847045506654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,16.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,16.95,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,4.376157,Mm²,,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.219333607451076,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.025519421860885,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.107473467651027,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.111860139800049,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.196632579079889,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.022701028371186,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,190.377864965389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,70.9602377235989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.319430111582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.7377331252154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.29570427086038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.310533141035791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.86061564340049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.173898558980043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,11.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,11.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.911131,Mm²,,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.149198613210083,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.017359229147847,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.073107320472941,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.076091292737142,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.133756556742839,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.015442056467244,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,165.097654662617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.6698401008349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.258396675505,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.1351104564675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.95037582671466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.208640293282584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.36334114397511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.116838564238247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,28.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,28.69,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,7.549479,Mm²,,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.371249628187101,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.043194820837097,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.18191231781168,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.189337310375422,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.038424336517365,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.142825291669736,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.817444359846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,65.9362528927681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.197363239429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.9243016199501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.12781418952219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.497784356552642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.79283505832051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.278759239669479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,36.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,36.94,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,9.779454,Mm²,,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.478004923849129,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.055615778380006,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.234222412686073,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.243782511163056,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.049473509618385,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.178531414230744,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.583547000854,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.2026656847013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.977737170948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.7134927834327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.97631439973415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.588749199740915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.63069785493897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.329699551854912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,26.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,26.78,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,7.033206,Mm²,,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.346534159736862,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.040319180969588,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.169801738271062,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.176732421465799,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.035866285532765,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.130667874204097,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.1232340043404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.7844257730782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.3867897448178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.6792784329238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.12049929399237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.385310152053768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.56332005205564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.21577368515011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,4.659972,Mm²,,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.232920645080788,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02710027100271,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.114131116089586,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.118789528991202,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.208813358314927,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.024107286765862,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.4644173521213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.1838541925204,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.05896517386614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.5655032608547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.3429583478114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23606507428732,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.07142088546777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.272495243389228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.39242823003256,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.271397336297968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.518,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,88,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,88,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,23.580972,Mm²,,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.1387231537283,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.203618171260106,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.387165872267622,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.751557281460677,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.03623806989275,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.102485083835547,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.513578101723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.680071692912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.376134956492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.79925954717584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.5132390167434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.00758534641847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.94,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,4.065312,Mm²,,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.206264171254876,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.036882655112342,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.070129818226658,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.136134353028218,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.187700395841937,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.018563775412939,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,201.513578101723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,95.3766636069878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.680071692912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.4109316199132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.32858626371003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.387735895081451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.71569352189647,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.217132101245612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,12.74,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,12.74,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.238194,Mm²,,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.164856056573847,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.029478357975611,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.056051059235108,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.108804997338739,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.150019011482201,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.014837045091646,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,176.77944603929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,96.3304302430577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.225185103612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.9450409361123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.34525033190766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.311936621230488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.61998230250357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.174684507889073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,36.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,36.63,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,9.695661,Mm²,,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.473993512739404,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.084756063787019,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.161157794331397,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.312835718408007,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.431334096592858,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.042659416146546,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.045313976858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,104.036864662502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.770298514312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,58.2606442110013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.83704366074599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.0087061712705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.52729074918731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.564875455911481,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,36.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,36.69,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,9.711879,Mm²,,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.474769914889674,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.084894894358333,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.161421771062489,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.313348143827185,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.432040622549603,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.042729292340071,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.571279692877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,111.743299081947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.844120459094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.5762474858903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.36161242994413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.08523739974468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.88964098928023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.60773294385702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,29.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,29.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,7.717065,Mm²,,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.37927245040655,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.067818734086747,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.128952633138227,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.250319817268323,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.345137929869961,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.03413452053659,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.8008151133967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,112.860732072766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.4589047758703,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,63.2020099607492,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.78758477561649,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.870953605353123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.13276482017001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.487734018997749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,4.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.56,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.02714,Mm²,,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.059006563420466,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.010551123419842,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.020062231562959,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.038944331857508,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.053695972712624,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005310590707842,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.5144711566366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,77.2922572607278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.30613731295905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.8310629838666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.2836640660076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42491713371718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.336621974621356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.079389969122784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.379647269336182,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044458382708759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.166,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,99.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,99.35,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,26.648877,Mm²,,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.082172894867962,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.082172894867962,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.06573831589437,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016434578973593,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.076009927752865,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.006162967115097,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,153.544352283672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.434231034876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.5259141817623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.03334478170639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,17.2825956425845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.13867307775558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,17.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,17.75,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,4.592397,Mm²,,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014681116093672,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.014681116093672,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011744892874938,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002936223218734,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.013580032386647,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001101083707025,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.544352283672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.1684506652934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.434231034876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.5743323725643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.77387998717948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.381942543329941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.08773097791519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.213887824264767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,10.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.5,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.632722,Mm²,,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008684603886398,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.008684603886398,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006947683109118,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00173692077728,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.008033258594918,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00065134529148,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,121.529177016714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.0001351719463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.897386488552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.0400756962899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.30472741267635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.221149003870157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.4534082177909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.123843442167288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,22.29,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,22.29,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,5.819559,Mm²,,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018436173393124,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.018436173393124,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014748938714499,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003687234678625,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.01705346038864,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001382713004484,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.5140017497556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,72.6601169237335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.3605419422288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.6896654772908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.05613165078101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.422849837384566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.29326175168713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.236795908935357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,26.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,26.35,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,6.916977,Mm²,,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021794220229198,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.021794220229198,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017435376183358,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00435884404584,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.020159653712008,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00163456651719,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,68.5274654543584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.3200986755208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,76.0654866543378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.3392552582916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.87764940738163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.424149712176308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.09714196687228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.237523838818732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,20.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,20.54,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.346534,Mm²,,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016988739412058,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.016988739412058,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013590991529646,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003397747882412,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.015714583956154,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001274155455904,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.8238957498585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.9049124900937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.524524282343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.1467509944525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.12054886148091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.373748991395311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.253904723944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.209299435181374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.92,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.854148,Mm²,,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003242252117588,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003242252117588,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002593801694071,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000648450423518,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002999083208769,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000243168908819,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,26.8970301908357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.3895602175481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.73057657150995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,29.8557035118276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.498153721827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.52244377724783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.116140218508395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.054144066080698,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.130842337373176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030320677005191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.136,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,51.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,51.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,13.655556,Mm²,,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.055183415097326,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.055183415097326,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018210526982118,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036972888115208,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.051044658965026,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.004138756132299,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,212.863439567601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,236.278417920037,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.778487569725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.04193709678271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.2294342723605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.583484774198316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,9.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,9.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.354313,Mm²,,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010190852983067,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.010190852983067,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003362981484412,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006827871498655,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.009426539009337,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00076431397373,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,212.863439567601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,70.9602377235989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,236.278417920037,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.7377331252154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.17516141351981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.167062610155759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.44311120435363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.093555061687225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,6.93,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.667751,Mm²,,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007457509099541,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.007457509099541,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002460978002849,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004996531096693,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.006898195917075,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000559313182466,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.454376772229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.6698401008349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.524358217174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.1351104564675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.38101478254637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.119527447498007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.55391547989914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.066935370598884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,17.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,17.69,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,4.576179,Mm²,,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.019036556417155,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.019036556417155,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006282063617661,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012754492799494,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.017608814685868,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001427741731287,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.045313976858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.4278084892389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.770298514312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.5195727539738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.98733806634257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.290257005224477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.36952341681681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.162543922925707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,20.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,20.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,5.43303,Mm²,,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022447855673366,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.022447855673366,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007407792372211,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015040063301155,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.020764266497864,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001683589175502,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.70699282921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.1857768776429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.204762040424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.90403505148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.9106635628559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.29982598134954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.29401577940899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.167902549555742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,17.51,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,17.51,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,4.527525,Mm²,,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018842854882102,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.018842854882102,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006218142111094,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012624712771008,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.017429640765944,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001413214116158,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.0895518634095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.3599278717364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.2294025683846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.9215596081724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.74952578920689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.282336132437483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.99500661851379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.158108234164991,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.64,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.508164,Mm²,,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002840955847444,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002840955847444,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000937515429657,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001903440417788,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002627884158886,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000213071688558,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.6448835407353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,57.5331853404853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.8262556298451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.6458207302162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2185837906718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7058697625002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.212443807410332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029236293595362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.243808462900771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016372324413403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.186,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,32.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,32.6,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,8.606352,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.083774523348991,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.083774523348991,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.028483337938657,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.055291185410334,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.069867952473059,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.013906570875933,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,174.316740249524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.491581676972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.95699369890096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.656676111669861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.66163123979803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.367738622535122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.24,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.24,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.481244,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016035368886433,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.016035368886433,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005452025421387,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.010583343465046,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.013373497651285,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002661871235148,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,174.316740249524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0122909590225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.491581676972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.4468829370526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.14023437672215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109630261909306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.2751097833233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.061392946669212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.02,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.881178,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010330478032606,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.010330478032606,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003512362531086,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00681811550152,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.008615618679193,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001714859353413,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,148.083569880278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.7524138686127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.372762567108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.8613517664231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.629116724734705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.065870182547917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.7044073037424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.036887302226833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.048874,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021431887261675,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.021431887261675,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.007286841668969,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.014145045592705,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.017874193976237,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003557693285438,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.850399511031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.1558862737223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.253943457244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.0472963132845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08639781789845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.135545075333186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.21853136534304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.075905242186584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,11.62,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,11.62,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.935458,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029860735009671,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.029860735009671,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.010152649903288,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.019708085106383,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.024903852998066,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.004956882011605,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,93.1545233520184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.5593586788318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.40152092074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2332408601458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.18021610655985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.168963079908646,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.32763677641913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.094619324748842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.91913,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020198397347334,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.020198397347334,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.006867455098093,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.01333094224924,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.016845463387676,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003352933959657,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.095322022525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.0420753070799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.2458074450028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.4235621719648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.648516415722338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.124824197984076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.731756114684347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.069901550871083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.7,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.254082,Mm²,,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004368610113291,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004368610113291,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001485327438519,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002883282674772,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.003643420834485,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000725189278806,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.38,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,52.766148399856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,59.9708642233236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,8.41312781492254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.5704247238401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.5836839650612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8529348812501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.104004769565123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015237517123591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.118019711328653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008533009589211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.167,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,36.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,36.11,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,9.555105,Mm²,,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.097895616883117,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.097895616883117,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.03328450974026,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.064611107142857,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.08164494448052,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.016250672402597,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,231.066047578915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3013308855902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.19914681099556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,256.483312812595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7287452959305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99689938618427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.56764616941966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.729067228251557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.55038046249793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.408277647820872,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.85,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.646127,Mm²,,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018570616883117,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.018570616883117,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00631400974026,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.012256607142857,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.01548789448052,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.003082722402597,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,231.066047578915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,79.1626307937999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.19914681099556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,256.483312812595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,44.3310732445279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99689938618427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.62526658157089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.130311743940705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.81168945356164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.072974576606795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.70278,Mm²,,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009109090909091,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.009109090909091,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003097090909091,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.006012,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.007596981818182,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001512109090909,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,181.59778345405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,82.0239307020095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.19914681099556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.573539633995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.9334011931253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99689938618427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.630997685690552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.057644778018758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.704156675107803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032281075690505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.01,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.01,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.878475,Mm²,,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010871266233766,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.010871266233766,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003696230519481,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.007175035714286,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.009066636038961,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001804630194805,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.129519329185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7465305184288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.19914681099556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.663766455395,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.1380570903201,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99689938618427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.554697951222123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.077083133397177,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.620189270024733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043166554702419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.01,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.01,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.878475,Mm²,,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010871266233766,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.010871266233766,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003696230519481,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.007175035714286,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.009066636038961,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001804630194805,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,95.0818583179223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.2563917391659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.19914681099556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.540862732894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,51.1035793739329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99689938618427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.40613683056696,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.080166458733064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.455286426097503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044893216890516,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.82,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.82,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.827118,Mm²,,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010356168831169,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.010356168831169,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003521097402597,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.006835071428571,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.008637044805195,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001719124025974,1e6 dimensionless,Own calculations,,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.3879055452815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,83.7788613123781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.19914681099556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.3605751552625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.9161623349317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99689938618427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.265822540000978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.069295004210972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.299325552748327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +France,fr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.038805202358144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,3395.61087828885,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,41.18,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,17.7,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,21.6195,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,16.30728,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.25322,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,30.7054620689655,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,10.4745379310345,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,726.424380087072,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,695.417759057354,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,13.73442,Mm²,,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,8.80965371010363,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,3.78653631572823,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.62506819780441,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.48862286920104,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.695962643098187,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,8.23885585890693,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.836276244424608,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.063278633287758,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.81924959394082,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.79898724062155,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.52121237981082,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.13609434036011,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.51061182479089,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,0.412323787685332,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.077064387523777,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,0.577064387523777,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,cavity wall,,0,0.01061182479089,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,other,,0,0.412323787685332,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.8866151080074,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.11335406623759,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,0.324013445553326,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.345237095135107,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,0.324013445553326,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.336837982385283,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.324013445553326,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.334625270344217,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,243.415702576937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.3292241560476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5698115947586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.683853986815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.8496278777678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.5698115947586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,187.113712562004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.416554302833303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,195.655202923237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.162747766116971,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1026.14045050161,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,982.33595326519,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,18.769632,Mm²,,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,12.4444364405354,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,5.34880036185181,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.5333291312811,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.92799683045203,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.983110478802298,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,13.7467118447231,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.21508083526557,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.113103603152815,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.22773883529173,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.88904465883308,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.823393222777665,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.12437918503625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.777388352917305,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.222611647082695,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.554776705834609,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.445223294165391,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,0.554776705834609,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.445223294165391,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.554776705834609,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.445223294165391,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.554776705834609,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.445223294165391,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,0.879784545571932,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,0.120215454428068,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,210.468012502478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.9370105317155,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.1896443350288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.075600332603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1196900147412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.1896443350288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,233.624549129875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.918529678860424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,244.044764032825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.358869545530767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,516.903274654552,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,494.843204826803,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,10.214478,Mm²,,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.2687032210832,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,2.69441172771876,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.29106919106868,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.48240647554895,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.495227554465573,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,7.75292827995117,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.679586914529751,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.064026464727808,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.02021202577999,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.64402647575802,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.797879742200088,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.202120257799912,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.554361359308628,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.445638640691372,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,173.347264617259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.5144949753539,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.0196857036275,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.083966753969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.3127131868708,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.0196857036275,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,99.7462799915061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.321904115606863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,104.069577676453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.125767937967601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,364.546659095211,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,348.992216751846,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,7.654896,Mm²,,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.42101052200239,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.90025590434824,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.32103052405126,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.75072016671295,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.349259831238189,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,4.70390027204278,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.447855202762042,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.037363851935839,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.568601692715094,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.36010177060076,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.385118645827925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.372033854301885,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.627966145698115,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.372033854301885,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.627966145698115,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.627966145698115,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.372033854301885,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.627966145698115,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.627966145698115,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.372033854301885,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.372033854301885,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.743269515106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.6588015940463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.5816842920366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.239930298667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8062937827939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.5816842920366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,61.2359608976843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.211725249687059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,63.8522371627759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.082721055052734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,357.902706795381,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,342.631961215219,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,7.710228,Mm²,,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.34043652058888,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.8656244353455,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.27872917330916,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.7188128621532,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.342894485126521,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,4.66468392505233,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.458466892363747,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.036453763717379,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.433233287497356,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.80030013750793,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.339939972498413,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.419939972498413,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.335334250052888,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.335334250052888,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.664665749947112,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.664665749947112,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.335334250052888,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.664665749947112,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.664665749947112,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.335334250052888,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.664665749947112,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.664665749947112,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.335334250052888,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.335334250052888,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.549370217513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.3429380551502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4714702698834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.617058476476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.2921858981472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.4714702698834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,43.567736072231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.203110058595085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,45.3040880392267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0793550998931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,258.489494605338,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,247.46369318569,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.107875,Mm²,,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.13481072166076,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.34743504730451,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.6457756288719,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.24138504577766,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.2476500470112,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.16409569876968,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.337611773141243,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.023615739809894,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.287353544229643,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.36264645577036,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.222412126537786,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.290117164616286,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.252929115407147,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.252929115407147,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.747070884592853,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.747070884592853,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.252929115407147,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.747070884592853,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.747070884592853,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.252929115407147,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.747070884592853,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.747070884592853,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.252929115407147,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.252929115407147,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,95.1307956729719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.0294961169698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.6617532869925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.9253877748897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.60692413290009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.6617532869925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,29.9162221761631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.112523912478467,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,31.1027096450226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043963092605337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,145.203912549688,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,139.015405483816,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.209892,Mm²,,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.76094886402572,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.756936207702946,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.924498153613505,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.697335750154186,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.139114960258032,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.77135577128305,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.17076659546604,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013981834686487,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.245819558328796,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.192131049996111,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.282131049996111,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.631149166731488,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.368850833268512,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.631149166731488,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.631149166731488,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.368850833268512,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.368850833268512,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.4230418763417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.5632285018351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.2029971265599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,64.5187631869094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.68985337566696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2029971265599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.1983228632441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046746390662212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.6286758164975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018263814831726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,19.43,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,10.20075,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.69428,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.53497,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,17.03,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,2.4,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,487.081203861442,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,466.286736456559,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,8.948202,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.03512583281841,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,2.43,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.16844106222967,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.38990982979609,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.476774940792655,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,5.2896651020534,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.712144848272573,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.033315882492439,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.554,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.23333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,0,0.33,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,0.33,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,0,0.33,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.33,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,0.33,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,261.917350998007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.7536745154933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,275.117985488307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0154606332033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,133.122876799789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.275190091806887,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,139.288157575427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.107516768868951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,569.278818852925,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,544.974513287905,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,10.329117,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,7.84724338384499,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,3.24,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.11980277651862,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.10750838000261,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.619932227323754,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,6.87794929628822,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.925974719293708,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.043319368263057,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,232.398131341507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.6702178120006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,244.110997161119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.0619540991486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,139.512382569943,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.451074789195638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,145.895595919192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.176234920138736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,286.551201968578,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,274.31936564452,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.57931,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.35545189950515,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.97,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.2866122472402,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.72475895220404,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.344080700060907,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,3.81746504624667,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.513943324141608,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.024043529116877,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,210.915951133468,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.9361742496004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.546115070595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.6495632793189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,64.3321837572371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.194919746352538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,67.2482435851669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.076155144899937,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,228.922960439144,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,219.151850028393,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,4.611159,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.08064653451814,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.49,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.61733943062203,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.21993602766919,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.243371076226933,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,2.70012405984786,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.363516291073141,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017006183597139,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.595064661216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.0931950821444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.840255920141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.1481113185938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,41.0240597658963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.143375666341786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,42.8310086841277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.056016872839736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,237.885671020254,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,227.731852867689,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,4.761732,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.23182960408216,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.55,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.69671054214313,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.27980452321654,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.255314538722491,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,2.83263294686151,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.381355893281695,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017840763938953,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,109.870836011567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.6057394755728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,115.40832614655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1762624131063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,30.3954760946909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.136212865044498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,31.6565389833671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.053218366372886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,193.109975392769,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,184.868079443498,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,4.009503,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.52049800862065,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.13,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.32326145452584,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.998117211413777,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.199119342681031,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.20916526437518,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.297418765017237,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013913979228237,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.852574692658,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.7427637647255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.985944457168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.27629780287824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,23.1920904679647,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.095196682542958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,24.1410866774029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037193343869534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,91.6453284118872,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,87.7359728886996,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.310111,Mm²,,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.18618496677715,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.64,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.622747107558001,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.469729246843749,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.093708612375395,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.03966700896628,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.139969826079703,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006548131731164,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,68.1833884050591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.0441596253921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.6198311806741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.83125316564071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5923108802848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.05261566677309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046304233636374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.35411531696801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018091064081732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,14.39,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,5.5469963444223,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.55475,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,5.69844,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.13681,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,13.6754620689655,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.714537931034482,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,223.925799734999,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,214.368068086315,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.527207,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.77452787728522,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.16,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.45662713557474,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.09871303940495,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.219187702305532,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,2.63675821717174,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.110981115091409,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026788545022064,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.96666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.83333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.4875,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.946,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,0.75,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,other,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,209.244697603298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.7536745154933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,219.790630362504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0154606332033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,51.1125673783473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.139228250542263,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,53.3732786101065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.054396477486862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,333.503691084611,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,319.266983475298,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.602842,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.59719305669043,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.16,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.41352635476248,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.82048845044941,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.363178251478544,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,4.36891864284098,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.183887722267617,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.044386691581838,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,198.616276276593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.582716482536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,208.626536600933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.2324673297268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,72.7307535072186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.361846756382445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,75.9266991247732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.141373527718621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,125.875449555177,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,120.504467859171,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.1147,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.91325132157805,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.00445694382847,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.757647523344906,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.151146854404666,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.81824849733417,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.076530052863122,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018472771380754,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.77937884963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.8746669005695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.076259543651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.6255323580525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,20.9639149674051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073749458094634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,21.84322169247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028813913277574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,99.6024985803521,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,95.353371890971,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.673316,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.34036398748425,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.35,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.70369109342923,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.530784139043762,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.105888755011255,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.27380798258848,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.05361455949937,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0129414453964,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,131.878803847075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.576053471336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.525495560968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.03906409125097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.3582933325529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.034430239490442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.9920777993923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013451894568916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,81.6013628620102,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,78.1208846678024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.537848,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.10860691650672,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.34,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.582018631166027,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.439008338936661,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.087579946404031,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,1.05355884892845,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.044344276660269,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010703790917996,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.5015829861652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.8394193531829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.760462768668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.92336114128858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.88153520364507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035123555373454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.214242659948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013722773084408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,47.0660609502177,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,45.0602401476434,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.790707,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.614312713040114,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.32251417434606,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.243267834363885,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.048530704330169,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.583808909358122,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.024572508521605,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005931295160387,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.4783041282157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,16.2159877407599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.5848106562778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.33558641031489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.98660460352945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012822095018533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.17164477385179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005009592523741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,44.4065871663827,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,42.5143258943782,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.746028,Mm²,,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.574763897248578,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.301751046055503,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.227606503310437,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.045406347882638,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.546223896833476,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.022990555889943,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005549444525159,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,50.6446154030417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.84923749187659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.197104019355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.11319708807618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.9431213519312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.3939803380557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00212561094759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.50249767093134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000830476197223,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,7.36,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.864,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.91456,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.58144,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,6.99453793103448,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.365462068965517,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,15.4173764906303,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,14.7629545144804,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.259011,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.328757026515671,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.172597438920727,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.130187782500206,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.025971805094738,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.312432539681789,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.013150281060627,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003174205773255,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.825,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,155.201240751257,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,10.7547408820358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.02338328512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.20187726261137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.87786323697598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002785596190597,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.99334117140919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001088332431666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,123.357940564073,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,118.094456501988,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.837673,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.63045984260605,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.55,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.38099141736818,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.041662097672,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.207806327565878,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.49984390559389,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.105218393704242,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.02539754330792,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,141.305424882421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.9436236816185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.427218296495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0896737724083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.3811826243144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.087807885443489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,22.2222269468689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034306540842771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,104.476623130797,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,100.019371323112,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.520468,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.22783843812553,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.4,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.1696151800159,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.88222402149771,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.175999236611917,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,2.11721473637033,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.089113537525021,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021510164230178,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.725628514187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.0813515754327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.003800191302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.06438406052156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.4499487456061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045573468042628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.9778681584866,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017805553964255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,36.0212000757146,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,34.4869948324815,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.370421,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.768108804738271,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.403257122487592,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.304171086676355,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.060680595574323,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.72996822960644,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.030724352189531,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007416222942301,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.988780733244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.4170074672166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.078615282199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.93042481744151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.85341370731374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03483200079023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.02894680510176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013608862708743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,38.4156729131176,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,36.7792236797274,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.410648,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.819168060544572,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.430063231785901,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.324390551975651,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.064714276783021,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.778492129262359,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.032766722421783,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00790920886043,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.9152186469628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.7728036737848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.7917456667698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.72523439534774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.29060636805029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027892465956817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.43318202241228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010897586449329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,18.3134582623509,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,17.5353735945486,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.307665,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.390512490060051,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.205019057281527,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.15464294606378,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.030850486714744,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.37112152503638,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.015620499602402,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003770465421269,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.3388893858405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.9044646286415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.3295694108868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.38597433041023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.73736048645561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005816242109971,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.78980317799655,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002272405792366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,9.15199697141776,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,8.76510670073822,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.153753,Mm²,,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.195155337409855,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.102456552140174,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.077281513614303,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015417271655379,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.185464865483297,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.007806213496394,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001884258430164,1e6 dimensionless,Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,46.0251955331313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,16.5165322544973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.3448653880011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.4530091518321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0502077983744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.751651136302774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002539466383726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.771983290091194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000992169516122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.999,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,172.71,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,172.71,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.44311,Mm²,,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.28663474448852,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.072648344144759,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.995401388176861,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.55105091589157,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.13475172241817,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.151883022070353,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.16333634234434E-16,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.734945760351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.2761997386418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,150.963983285232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.40172373341464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,22.2815149391311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.201171533991495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,27.1786312591905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045229181640317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,495.68,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,495.68,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,12.45518,Mm²,,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.99272649445257,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.370367360874018,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.12231749153168,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.74313864275919,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,3.53584801385262,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.456878480599958,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.44089209850063E-16,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.156162376781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.9333754568627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88928687642332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.942079723441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6146763550784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.98707261395179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,64.4609282858283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.03122467378723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,79.2680022305987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.20184914464425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,252.91,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,252.91,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,4.92931,Mm²,,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.71481110839495,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.146578012973711,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.33145942026157,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.735120609018079,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.51403398396342,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.200777124431533,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,114.130438588517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.1716759105376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.87408483482665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.380439463876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1294854594236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99156653152318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,30.350344018998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.419408490179571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,37.0189440362965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.094295163969992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,230.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,230.12,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,4.22282,Mm²,,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.41111818823282,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.125569819050871,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.09609861273209,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.602060428406459,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.24605289046935,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.165065297763475,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.888320973475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.3968440386435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.09546256550491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.022634797374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.261274128888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.21737181681501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,22.5480282679901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.34298998830496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,27.4395103220572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.077114073616951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,218.49,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,218.49,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.86229,Mm²,,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.31970940263389,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.114849095254353,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.02405731701427,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.561709663740961,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,1.1648576192565,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.154851783377393,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.3596021644878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.8730634549532,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.21192780950353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.15231066232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.5308045946392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.3361663656936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.2595435840174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.283979290379214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,22.1742173458507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.063846761277829,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,197.46,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,197.46,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.21036,Mm²,,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.16988105480649,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.095463298053943,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.905888443920091,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.495810916285598,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.03176467488727,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.138116379919221,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.040103994879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.8422791604129,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.41481831661584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.4793279137012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.753724206895,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.54311468294816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.37044895962777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.239228487929908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.2596515151344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.053785486044847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,173.73,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,173.73,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,12.059712,Mm²,,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.99209392506248,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.073524069648344,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.767371409039251,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.419230036983002,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.874509373261871,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.11758455180061,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-2.35922392732846E-16,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,38.2690030116913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.331916606077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.81025183437677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,47.0708737043804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2563408193977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.9464568710643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.83161894440741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.808342518322884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.384430840872,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.18398707645578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.29,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,80.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,80.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.00601,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.974559488296732,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.044270571931906,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.779647590637386,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.454729457239255,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.87369258125802,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.100866907038712,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.405666205034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.708969432192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.4086485724257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.165179672181064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.7668686044839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037137169698577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,269.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,269.93,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,7.88268,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,3.27355453802808,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.145508845394263,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.61884363042247,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.5274405474439,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.93474164334218,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.338812894685907,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.405666205034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.8567247154409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.708969432192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.2170466845514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,34.9627489939632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.60364325373585,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,43.3740323843747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.10571646955938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,108.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,108.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.88765,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.31946331914739,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.058718317986773,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.05557065531791,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.615661584714173,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.18289886561564,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.136564453531755,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.405666205034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.6052919625953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.708969432192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3892171513969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.0923464992524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.223343018626511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,17.28515809069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.050213972907231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,88.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,88.78,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.26703,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.0766723664881,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.0477628457973,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.861337893190482,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.502375326203348,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.965236776556583,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.111435589931519,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,95.8099165512282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.6052919625953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.846197358011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3892171513969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.69418046893019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.175341652733836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.6543250005066,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039421876958731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,82.29,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,82.29,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.06584,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.997965409307343,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.044310279064035,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.798372327445875,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.465650659982806,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.894675989444033,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.10328941986331,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,95.8099165512282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.5084452485801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.846197358011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6069424071734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.0586180534835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.13421584712257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.87547200148329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030175605902435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,71.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,71.7,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.73755,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.869536029254302,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.038724460369585,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.695628823403442,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.405725511250057,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.779539050226482,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.08999697902782,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,36.7358240104332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.7926851762079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.1850635328329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.2923175905278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.78593227784927,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.102727286770862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.39478222553135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023096066429422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,60.16,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,60.16,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,6.719328,Mm²,,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.729585599999146,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.032658157045019,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.583668479999317,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.340424640959602,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.654073490399235,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.075512109599912,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.529778602202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,57.159001681669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11957735427074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.6216276807084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.1465703867839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.16196890135615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.5056252543414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.392903692302075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.05514117037701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.088336118503888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,22.44,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,22.44,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.21049,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.27213930957415,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.035508052590464,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.18233333741468,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.089805972159469,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.225875626946544,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.046263682627606,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,146.228097139055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.860559481038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.41045892848138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017332251183889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.1677533920091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00389679156627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,49.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,49.63,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.05338,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.60188386515887,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.073227065139687,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.403262189656443,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.198621675502427,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.499563608081862,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.102320257077008,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,137.779392344807,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,100.6138773057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.468652584113,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.141191780311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.12351950746659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.108422292936033,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.7019680584512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024376468597544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,27.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,27.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.35464,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.328531813563445,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.041376453671077,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.220116315087508,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.108415498475937,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.27268140525766,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.055850408305786,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,129.330687550559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,101.620016078757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.076745687188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.3726036981141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.65942084860417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03686740851972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.46835861398263,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008288860175499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,22.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,22.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.19871,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.267530889893304,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.033536719437327,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.179245696228514,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.08828519366479,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.222050638611442,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.045480251281862,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.433277962063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,109.749617365058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.292931893337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.2424119939633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.60719234788154,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022309938435343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.18019459832622,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00501591968732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,21.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,21.26,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.17391,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.257828953723103,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.032476543564091,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.172745398994479,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.085083554728624,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.213998031590175,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.043830922132928,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.3837361462719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,117.879218651358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.6419954599144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.1122202898124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.81000995568176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020971883538718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.20062678319404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004715086230601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,19.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,19.97,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.13392,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.242184581648653,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.030820105309485,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.162263669704597,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.079920911944056,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.201013202768382,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.041171378880271,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,46.3341943304809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,119.058010837872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.9910590264915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.3833424927105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.04018403728412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01631096653407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.25529942879354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003667177226624,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,17.81,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,17.81,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.06696,Mm²,,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.215989353989109,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.027780360287869,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.144712867172703,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.071276486816406,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.179271163810961,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.036718190178149,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,20.7608204833344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.75313853302057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,25.5358091945013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.86820130368098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.472213610081281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005513646915641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.559305426972626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001239627361288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,17.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,17.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.05642,Mm²,,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008661991783539,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.008661991783539,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007795792605185,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000866199178354,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.008012342399773,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000649649383765,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.944171391185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.291330811157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.36060819877266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00464575804929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.89188394433096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001044500832196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,73.74,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,73.74,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.80079,Mm²,,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027191541723989,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.027191541723989,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02447238755159,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002719154172399,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.025152176094689,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002039365629299,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,131.944171391185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7353010105705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.291330811157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.1791192324312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.96400964954186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.161626688319082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.2064981141938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03633835612257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,40.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,40.6,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.77345,Mm²,,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016421906346847,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.016421906346847,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014779715712162,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001642190634685,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.015190263370833,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001231642976014,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,109.92005564985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.6126540206763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.201668449315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.3809104247555,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.59183652025899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.070113818769095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.62085164513479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015763615168027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,44.62,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,44.62,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.89807,Mm²,,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01894661382309,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01894661382309,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017051952440781,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001894661382309,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.017525617786359,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001420996036732,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.8959399085147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,76.649945727885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.112006087473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.6294875174135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.06378015103927,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.070420268145318,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.96865829019082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015832513854764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,42.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,42.02,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.81747,Mm²,,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017928713696836,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.017928713696836,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016135842327153,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001792871369684,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.016584060169574,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001344653527263,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,58.6864146309323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.6872374350937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.1842899960467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8780646100715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.59960010343146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.054096113133746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.16945276548636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012162371476795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,37.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,37.05,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.6634,Mm²,,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015954944305092,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.015954944305092,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014359449874583,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001595494430509,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.01475832348221,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001196620822882,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,29.4768893533498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.7434506760068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,36.2565739046203,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.9609936554816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.20991426200521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.050046597497568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.46345748485905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011251923191047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,26.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,26.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.694952,Mm²,,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011457591427471,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.011457591427471,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010311832284724,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001145759142747,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.01059827207041,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00085931935706,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,27.2310311169041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.869530763173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.1793660314061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.4941682737921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3799920755298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24295335203423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.816823267403612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.115947479738942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.986759086869694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026068348328403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.122,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,17.76,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,17.76,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.06541,Mm²,,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011963664639458,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.011963664639458,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010767298175513,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001196366463946,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.011066389791499,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000897274847959,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,136.288837622404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.635270275557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.85608107028243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005386016200001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.4215055404846,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00121093228348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,26.24,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,26.24,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.32829,Mm²,,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013736967210627,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.013736967210627,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012363270489564,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001373696721063,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.01270669466983,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001030272540797,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.288837622404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.8567247154409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.635270275557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.2170466845514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.21979545519206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025139932582439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.05519737513039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005652184256071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,19.62,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,19.62,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.12307,Mm²,,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013569185626464,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.013569185626464,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012212267063818,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001356918562646,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.012551496704479,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001017688921985,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.20572671451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.6052919625953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.163043858847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3892171513969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.78078703284642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009518752377319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.31931380871247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002140090954822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,19.01,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,19.01,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.10416,Mm²,,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013563519553183,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.013563519553183,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012207167597864,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001356351955318,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.012546255586694,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001017263966489,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.1226158066157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.9106833868969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.690817442137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3894571789863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.331560413038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007129713367556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.76990691586035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001602965859763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,18.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,18.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.09951,Mm²,,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013702662050596,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.013702662050596,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012332395845537,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00137026620506,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.012674962396801,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001027699653795,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.2394497713598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.2160748111984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.4745232187725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3896972065756,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.71184652854859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005926322481365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.00843142388401,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001332408769026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,18.4,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,18.4,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.08525,Mm²,,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013788041154876,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.013788041154876,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012409237039388,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001378804115488,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.01275393806826,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001034103086616,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,34.3562837361039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.7841645366542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,42.2582289954077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.1303578434305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08344391914504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005737086327365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.23786547788425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001289863006152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,18.65,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,18.65,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.4536,Mm²,,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014563256657935,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.014563256657935,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013106930992141,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001456325665793,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.013471012408589,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001092244249345,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,19.8651508295137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,60.6985462884234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5265379565614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,24.4341355203019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9606656463374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0170687156926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.827904995860301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.028166116390147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.922264959001298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006332557937179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.147,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,17.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,17.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.04433,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010120274660331,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.010120274660331,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005667353809786,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.004452920850546,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.008440309066716,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001679965593615,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.263560130581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.854178960614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.06587820685178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003650238467299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.50627590846518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000820679225297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,55.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,55.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.23628,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029508111180442,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.029508111180442,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.016524542261047,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.012983568919394,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.024609764724488,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.004898346455953,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.263560130581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.0763687892233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.854178960614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9575648215214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.71652323340042,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.098744311030496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.14833145181917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022200578237551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,31.41,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,31.41,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.48856,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018282765069631,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.018282765069631,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.010238348438994,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.008044416630638,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.015247826068073,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.003034939001559,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.2283996864342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.8571324771156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.130931614314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1371404697366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.29547111848298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.039412548777809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.98951658802433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008861081347895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,30.99,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,30.99,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.47554,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018520216365211,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.018520216365211,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.010371321164518,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.008148895200693,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.015445860448586,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003074355916625,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.1932392422877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,69.7885622422473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.4076842680138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.0513693157169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.75447597993038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033950559705118,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.32494718119387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007633068164396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,29.51,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,29.51,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.42966,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017755253306335,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.017755253306335,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.009942941851547,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.007812311454787,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.014807881257483,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002947372048852,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,53.5530243761992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.719992007379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.8702199827251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9655981616972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.86628679036806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026688997656506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.23548597353717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006000458906155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,26.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,26.79,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.34534,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016341351239746,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.016341351239746,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.009151156694258,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.007190194545488,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.013628686933948,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002712664305798,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,27.9128095101108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.6135909683383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.3327556974363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.7811259227178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.00736577738576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024240002907621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.18454776795641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005449854026151,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,18.65,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,18.65,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.4536,Mm²,,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011197328178305,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.011197328178305,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.006270503779851,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.004926824398454,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.009338571700706,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001858756477599,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,19.8116780143603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.2680699242305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.68949647666623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,24.3683639576631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.551656082573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.88328640619955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.550196904257644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029358459637537,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.638793279286039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006600631199055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,17.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,17.6,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.06045,Mm²,,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009190015534312,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.009190015534312,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.009190015534312,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.007664472955616,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001525542578696,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,59.76923913779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4911018445601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.26712235749967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.5161641394817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5129534242488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.41246480464966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.1798399623171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004977597909953,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.42434386941671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001119108034496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,20.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,20.61,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.15376,Mm²,,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.046851471150563,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.046851471150563,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.046851471150563,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.03907412693957,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.007777344210994,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.2676397125756,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,104.225657516674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.26712235749967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.049196846468,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.971901228835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.41246480464966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47433144626425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016394329053058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.78197484662953,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003685919532946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,25.39,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,25.39,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.30194,Mm²,,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018542118641175,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.018542118641175,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.018542118641175,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.01546412694674,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.003077991694435,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,68.7660402873612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,98.3952123189591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.26712235749967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.5822295534543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.6308988333606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.41246480464966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.93048199955302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030392767766961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.33574528975226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006833173593745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,24.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,24.66,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.27931,Mm²,,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015884582109935,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.015884582109935,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.015884582109935,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.013247741479686,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.002636840630249,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.7628414369323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.5647671212441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.26712235749967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.6482949674268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.2898964378861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.41246480464966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.09683890717069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026448913202041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.54147833597941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005946480974066,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,24.55,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,24.55,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.2759,Mm²,,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014528410549676,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.014528410549676,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.014528410549676,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.01211669439843,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002411716151246,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,82.882863487877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,96.2673578060939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.26712235749967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.945922090089,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.1414922954016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.41246480464966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.213182152504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027171047791132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.68474839826583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006108837724301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,23.55,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,23.55,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.2449,Mm²,,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012076107203824,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.012076107203824,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.012076107203824,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.010071473407989,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002004633795835,1e6 dimensionless,Own calculations,,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.0028855388217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,88.379229825327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.26712235749967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.243549212751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.3272228598252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.41246480464966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.24360868595837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02214188707206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.72369913010978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Germany,de,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004978136878371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,351.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.86,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,2.53,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.0764,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.372,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.4116,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,3.09,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,28.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,25.351684,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,15.162928,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.559665004985045,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.206615753936662,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.414152103688933,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.111933000997009,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.033579900299103,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.3881706906121,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.075476480954256,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.171484572050147,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.37542066069064,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.17247868774791,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,2.97791458853614,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2.48642881354574,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,0.780551675977654,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,cavity wall,,0,0.219448324022346,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.640275837988827,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.359724162011173,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.719448324022346,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.280551675977654,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.0944068292345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.7056823605382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.9735544764112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.274111206488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.6717502605353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.9628199250011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.91007921630661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.78400953882371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.16080326333978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.540888180834477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,79.52,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,70.283812,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,37.774,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.55393020937188,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.572811762955181,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.14990835493519,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.310786041874377,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.093235812562313,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.07796369627193,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.279338000708085,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.623818875417746,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.7631242926516,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.30344095412707,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2.45620803359061,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,2.44648462321944,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.79520875251509,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.204791247484909,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.79520875251509,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.204791247484909,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,0.647604376257545,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.352395623742455,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.704791247484909,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.29520875251509,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,95.2255402351485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.3508560166731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8415392952963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.182045090286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4269555659028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7742230372603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.35013317224758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.93972723517381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.9390394708241,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.33821781954641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,66.96,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,59.192076,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,32.192336,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.30849052841476,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.482414320477339,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.968282991026919,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.261698105682951,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.078509431704885,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.917243681181674,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.231776941342884,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.494787472105823,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.41126817404032,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.69244896392031,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.83321991703375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,2.39338552417563,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.786663679808841,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.213336320191159,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.786663679808841,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.213336320191159,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.643331839904421,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.356668160095579,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.713336320191159,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.286663679808841,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.196997529798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.146910360849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.9185041196305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.571326167364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.9761534579497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.8841749853041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.09480302460607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.67873085969833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.1441767509354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.15815642010588,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,78.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,69.250585,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,37.254052,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.5310667996012,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.56439098208742,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.13298943170489,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.306213359920239,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.091864007976072,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.10263520670223,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.281849455569684,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.614447646732936,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,1.00292998970042,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,4.95745263306318,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,1.28890235592105,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,2.29710358034716,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.779387364390555,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.220612635609445,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.220612635609445,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.779387364390555,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.5896318454581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.0362045237953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.9840413429192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.97163250219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.5896775009664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.9778014624944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.50198112945032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.97581352121211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.7261170637681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.36311374828423,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,56.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,50.378738,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,28.432712,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.11346759720838,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.4105857794002,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.823966021934197,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.222693519441675,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.066808055832503,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.791916819632762,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.203122085376735,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.445543260782949,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.829802409059688,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,4.40029049033477,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.903256712915374,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,1.774119128152,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.801948051948052,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.198051948051948,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.198051948051948,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.801948051948052,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.4833799745677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.2810202821129,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.7808389344189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.410981701629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.3090758926297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.6875065017109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.09518186157638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.37276034474747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.71494344193666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.947067361841282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,22.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,19.558548,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,12.247664,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.431473579262213,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.159401803088363,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.319290448654038,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.086294715852443,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.025888414755733,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.288435757180581,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.062413605420398,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.091800321231631,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,4.07482360686594,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.527205854256341,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.977244994183152,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.569293478260869,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.43070652173913,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.43070652173913,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.569293478260869,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.569293478260869,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,86.0242705199247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.995969119437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.5607916759247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.023309270544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4225190954996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.8017469882261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.15857210433335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.57559083912924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.08625987298682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.397100119915262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,18.52,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,16.414712,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,10.6656,Mm²,,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.36190628115653,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.133779598054835,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.267810648055832,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.072381256231306,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.021714376869392,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.257269757067029,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.052416705508963,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.062063221884741,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.483212742980562,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.436787257019438,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.684616630669546,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.660637149028078,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.339362850971922,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,0.339362850971922,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,0.660637149028078,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.9433712307778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.6624411832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.0536155617936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.1551151971353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.122718172353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.5057951915784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.40880084726672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.465686132684518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.01411344223583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.321276862939049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.77,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.7898,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.754,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.2262,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.65,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,16.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,14.211317,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,8.359164,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.361396062792495,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.267433086466447,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.072279212558499,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02168376376755,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.1581706906121,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.050956844853742,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.152268527326653,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,0.75,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,105.784347727363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.7056823605382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.282195684902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.6717502605353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.80861668919179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.432216278583646,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.58604480452817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.298186010594857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,46.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,41.481445,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,22.082236,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.25201402117891,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.92649037567239,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.250402804235781,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.075120841270734,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.547963696271935,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.176533976986226,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.527516347920745,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,2.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,0.75,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,109.218920798872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.2568528313543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.193978634467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.7419027683513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.42246780607778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.17603039283923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.75333334574684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.811343368019787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,38.39,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,33.922109,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,18.278172,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.999035562457523,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.36,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.739286316218567,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.199807112491505,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.059942133747451,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.437243681181674,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.140864014306511,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.420927866969338,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.555,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,0.75,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.708603352857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.7056823605382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.75447365492,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.6717502605353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.51868624917337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.945085355563282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.46107926269784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.652014386803109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,43.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,38.682018,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,20.673488,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.21699074501055,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.43,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.900573151307804,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.243398149002109,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073019444700633,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.532635206702228,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.171595695046487,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.512759843261831,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.6457599981221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.2909664785651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.062601373314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.455337773562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.37673159787104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.12238364400302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.25791632512537,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.774332475997681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,34.41,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,30.407371,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,17.184948,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.941167521221523,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.32,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.696463965703927,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.188233504244305,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.056470051273291,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.411916819632762,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.132704620492235,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.396546081096526,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.745,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.96794752121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.0521709480897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.824361750083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4612927370871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.75426398038597,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.808589111030032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.36799238819497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.557845627699619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,9.51,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.418181,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.4439,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.190638063376236,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.141072166898415,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.038127612675247,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011438283802574,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.083435757180581,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.026879966936049,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.080322339259606,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,4.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.624540436697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.7056823605382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,245.440255278521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.6717502605353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.62542791543794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.281480564202534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.32425346966279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.194193441243328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.274345,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.861836,Mm²,,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.119428475237999,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.088377071676119,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0238856950476,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00716570851428,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.052269757067029,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.016839415008558,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.050319303162413,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,149.380953239057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.5664864824845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.629701227175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.1959190242661,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.1391142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.900918833811653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.191417641891572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.28823447600905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.132059031140996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.43602574626471,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.693932943907349,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.06265905223589,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.287205149252943,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.086161544775883,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.44,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,8.8163160285,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,7.80558868476835,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.9179708430654,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.198268942192549,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.146719017222487,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03965378843851,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011896136531553,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.013878825953479,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014390116239071,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,3.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.3141880358435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.7056823605382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.41652031006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.6717502605353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.771642309697584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.202581355909389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10321488584579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.139760877441888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,11.3217302649,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,10.0181199969332,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.03137692972156,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.301916188192979,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.223417979262804,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.060383237638596,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018114971291579,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.23,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.04257018253521,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.029346005657769,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.0539339266794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.6033414189059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.334630908544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.5314452449031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.01796521076387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.244541730722463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.45539294907174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.168709340025427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,11.8914446988,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.5212348135103,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.28455802414672,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.309454965957233,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.228996674808352,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.061890993191447,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018567297957434,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.23,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.04363315019997,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035821815757263,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.353786205079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.7397960077489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.763449651883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.385185265746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.07226932572973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.278706512184611,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.53303318105562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.192279622756163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,11.2985655202,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,9.99766321088862,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,5.02108251717688,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.31407605459065,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.232416280397081,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.06281521091813,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018844563275439,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.044284723697282,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.049791330893369,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,2.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.6536384834786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.4471539487355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.192268395223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4933915092326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.0218811104728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.258320405250503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.46099389381879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.178215247582322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.2994583653,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.58295168239643,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.79947929753932,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.172300075986852,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.127502056230271,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.034460015197371,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010338004559211,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.024294310714146,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018005765272706,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.6462524034569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.154511889722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.633205562184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.6015977527192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.654113830728629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.140406517713466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.935226129049958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.096866456570521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,12.0141052396,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,10.6295563370908,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.33906836847824,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.240835515885977,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.178218281755623,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048167103177195,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014450130953159,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.033957807739923,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006877708146054,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,4.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,21.2622524683329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4327731828521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.4071472549629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.9642702188496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.508345336850555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.231890545455855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.726561160690401,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.159981287309995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,12.0803932424,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,10.6880952723634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,5.36852675692256,Mm²,,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.242477805918531,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.179433576379713,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048495561183706,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014548668355112,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.034189370634513,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008288435284018,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,19.081508625427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.8677658030057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,27.2884654852231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.1946716274937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.487839807219914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.219399694209081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.697233866067562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.151363849034845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,82.2679866403,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.65397425373529,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,1.65,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.7536839715,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.33477831523165,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.8857931569346,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.075466738631458,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.055845386587279,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015093347726292,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004528004317888,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.010640810147036,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004825928484423,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.3141880358435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.7056823605382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.41652031006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.6717502605353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.329365094533139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.149211904330675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.470892701729261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.102941292797733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,21.2482697351,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,18.7842470030668,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,10.6603870702784,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.427190363025881,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.316120868639152,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.085438072605176,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.025631421781553,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.060233841186649,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.066956521839232,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,3.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.0539339266794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.6033414189059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.334630908544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.5314452449031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.90917579374807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.518130432434432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.72956328639864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.357458185336515,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,16.6785553012,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,14.7487321864897,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,8.62960597585328,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.335317566215625,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.248134998999563,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.067063513243125,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020119053972938,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.047279776836403,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.038037789379222,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.07,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,3.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.353786205079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,52.7397960077489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.763449651883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.385185265746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.50332657084813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.455123658793753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.1493193983316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.31398981220181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,23.2714344798,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,20.5709037891114,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,11.5594814828231,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.467865509403652,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.346220476958702,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.09357310188073,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.028071930564219,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.35,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.065969036825915,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.051896472577737,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.6536384834786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.4471539487355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.192268395223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4933915092326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.10315318552091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.594702423414358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.00689903641299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.410285201913565,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,16.2705416347,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,14.3884153176036,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,8.44828470246068,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.327114568584071,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.242064780752212,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.065422913716814,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019626874115044,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.046123154170354,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.030991414413717,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.6462524034569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.154511889722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.633205562184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.6015977527192,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.68662117567863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.423719595557321,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.41146339546434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.292324148974995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.5558947604,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.51081066290924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.46469563152176,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011176104570396,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008270317382093,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002235220914079,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000670566274224,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001575830744426,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00460027382597,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,21.2622524683329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.4327731828521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.4071472549629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.9642702188496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023924769097748,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.063615793145799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03419521661096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043888535691287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.4896067576,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.45227172763656,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.43523724307744,Mm²,,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.009843403304202,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00728411844511,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001968680660841,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000590604198252,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001387919865893,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00345548343831,1e6 dimensionless,Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,19.081508625427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.8677658030057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.5004622278773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,27.2884654852231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.1946716274937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.5727603387456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.020136011985426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.058654939521841,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.028779251762688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.040466042776118,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.45088,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,65.1098376313276,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,65.1098376313276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,45.15625,Mm²,,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.37966347658135,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.203171218468509,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.177907716182087,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.199808447660802,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.343729154298768,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.035934322282583,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.0965055627823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.37628289759869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.306156119061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.06442434639804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.21621775486549,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.11880963205316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.92577122285607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.50970240801329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.78701050620822,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.78701050620822,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,7.875,Mm²,,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.045097234516616,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.027419322427905,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021346558449175,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023445898221287,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.040879115068424,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.004218119448192,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,86.7925472606341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,145.549055380585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.20768459605037,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.4718019866975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.3872638451462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.81152689407555,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.790832982885861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.14619881112211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.831190664472886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.286549702780526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.94651384909265,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.94651384909265,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.2125,Mm²,,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.00596325779465,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.009194414096749,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002861193414415,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003002467334081,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.00522684142539,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.00073641636926,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.5611104849761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,144.454180156143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.33389615110928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.5172215334737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.1135450390357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.00084422666393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.244251285073852,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.464059053751609,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.27260576205351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.116014763437902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,15.85482330468,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,15.85482330468,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,12.5,Mm²,,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.179571744750021,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.049473994815568,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.083444630365185,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.09608956140022,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.162824095972433,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.016747648777588,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.5102810375397E-17,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,134.241801595265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,140.111384129182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.05952458399136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.665981754791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.0278460322956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.58928687598705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.20859791267971,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.75139230161478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.46154485126163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.437848075403695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,17.4976122254059,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,17.4976122254059,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,13.575,Mm²,,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.200235615220224,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.054600215965133,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.093053658137812,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.107151479297796,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.181539317989103,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.018696297231121,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.960322814022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,136.078808389028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09299502611397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.156355095424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.0197020972569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.63949253917096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.74805805428012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.84726982388105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.05850996052127,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.461817455970262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,30.6489207258835,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,30.6489207258835,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,23.58125,Mm²,,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.348193996792158,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.095638060163529,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.16259601679917,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.185462462700681,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.315183087766736,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.033010909025422,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,6.93889390390723E-17,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,164.624750255702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.694896320287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.84133829160363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.087225281272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.9237240800718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.26200743740545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.19395271361191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.19985527385277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.77270070237572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.799963818463192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,3.64781279847182,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.64781279847182,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.265625,Mm²,,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.033796775738985,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.011382774062609,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015289894062756,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018408917368536,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.031192587391348,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002604188347637,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.33680868994202E-18,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,140.562721929527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,121.536804217892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83135125308197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.61899412248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.3842010544731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.74702687962296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.526722548179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.275356822056162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.584985223851473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.068839205514041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,8.19484240687679,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.19484240687679,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.7875,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.160138495687722,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001228126677402,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.078211641293883,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.081926854393839,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.143564161384043,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.016574334303679,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,143.794024046216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,158.173426450838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.21386874160476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.784223905782868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.34945536596339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.176055976445717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.04106972301815,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.04106972301815,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.10625,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020343934766855,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000156020755055,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009935977740132,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010407957026723,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.018238337518486,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.00210559724837,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,142.542086025913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,126.01783712796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.796294628505,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.50445928199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.152906077440498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.139407232322806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.120000616153776,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034851808080701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.128939828080229,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.128939828080229,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.51875,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002519661645436,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.93236714975845E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001230602747631,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001289058897805,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.002258876665134,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000260784980303,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,141.29014800561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,127.278015499239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.419162806172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.8195038748099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018776484000718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.066025470540231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.020877555043768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016506367635058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.98280802292264,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.98280802292264,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.03125,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.077829548603473,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000596886741814,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.038011951537936,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.039817597065537,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.069774190323014,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.008055358280459,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,138.786271965005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,117.0957742593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.664899161505,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.2739435648251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.570012270439255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.354946565723504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.633914774677385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.088736641430876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.46991404011461,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.46991404011461,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.35,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.087348270375121,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000669887278583,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.042660895251209,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044687375123912,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.078307724391296,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.009040545983825,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,156.313404249245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,106.913533019361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.944744674169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.7283832548403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.718070776036558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.35816033561486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.797623171930112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.089540083903715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.7774594078319,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.7774594078319,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,6.16875,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.171523633493026,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00131544104491,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.083772142597994,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.087751490895032,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.153770937426498,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.017752696066528,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,173.840536533485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.2913150476186,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.224590186834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.3228287619047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.56390147672813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.600165799699997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.73550091394885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.150041449924999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.095510983763133,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.095510983763133,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.4875,Mm²,,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001866416033656,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.43138307389515E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000911557590838,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000954858442819,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.001673241974173,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000193174059483,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,162.895021270266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,96.2269474466621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.184523397292,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.0567368616655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015972009366784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046910636880248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01773470855752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011727659220062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.346,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,9.09264565425024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,9.09264565425024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,6.375,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.177682806404092,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.107842931827468,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.079068848849821,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.098613957554271,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.164356595923785,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.013326210480307,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,177.417502305779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.159252536357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.65963773763891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.863831948054563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.84417881392693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.215957987013641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.02196752626552,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.02196752626552,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.09375,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.019970651560124,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.012121001791533,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008886939944255,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011083711615869,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.018472852693115,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001497798867009,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,177.954047171623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,169.378813344032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.749451888786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.344703336008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.187083245218524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.185258077095035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.207879564877017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.046314519273759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.019102196752627,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.019102196752627,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.4375,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000373283206731,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00022656078115,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000166111026995,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000207172179736,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000345286966226,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,2.79962405048464E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,178.490592037467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,171.072601477472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.339651241214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.7681503693681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003507132273791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074844263146394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003896873447649,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018711065786599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.56542502387775,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.56542502387775,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.4125,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.089214686408778,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.054148026694884,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039700535451906,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.049514150956872,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.082523584928119,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.006691101480658,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,179.563681769156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,184.75840959567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,197.520049946071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.1896023989175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.843103724149887,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.630488072745224,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.936741775773421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.157622018186306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.06208213944604,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.06208213944604,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.7375,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.098920049783791,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.060038607004788,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044019422153787,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.054900627630004,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.091501046050007,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.007419003733784,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.383172980149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,198.444217713868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.521490278163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.611054428467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.0452741776703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.741685263705581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.16014400125433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.185421315926395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.83134670487106,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.83134670487106,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,6.95,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.153035289546832,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.092883350008905,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.06810070384834,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.084934585698492,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.14155764283082,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.011477646716013,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,223.202664191141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,200.428659891007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,245.522930610256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.1071649727516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.78797826434687,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.3929791862425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.98277641702761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.348244796560624,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.58,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.58,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0625,Mm²,,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.030875373878365,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.018739521891272,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013739541375872,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017135832502493,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.028559720837488,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002315653040877,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,212.829463451489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.10778249547446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,234.112409796638,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.66167374321168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.344340848596202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008468940667202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.382003051992963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0021172351668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.011,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,34.1738299904489,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,34.1738299904489,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,22.7875,Mm²,,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008073435897436,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.008073435897436,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006126123158974,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.007467928205128,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000605507692308,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,49.3621276576563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,54.2983404234219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.75096918927664,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.0877757672617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.95169660049913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.771943941815426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.34861509073544,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.34861509073544,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.925,Mm²,,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00126358974359,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00126358974359,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000958811897436,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001168820512821,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,9.47692307692307E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,50.4352173893445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,147.698325235996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,55.4787391282789,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.924581308999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.279787265004425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.579715926551284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.31177747157337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.144928981637821,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.74785100286533,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.74785100286533,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.56875,Mm²,,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000412923076923,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000412923076923,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000313326030769,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000381953846154,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.09692307692308E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.5083071210327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,149.175308488356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.6591378331359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.293827122089,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.093306082206213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.234018765191108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.103947584806363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.058504691297777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.659025787965616,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.659025787965616,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.85625,Mm²,,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000155692307692,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000155692307692,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000118139323077,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000144015384615,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.16769230769231E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.654486584409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,129.036641842428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,59.0199352428499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.259160460607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.036595369427425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.110487624577579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040749178021465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027621906144395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.534861509073544,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.534861509073544,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.775,Mm²,,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000126358974359,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000126358974359,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.58811897435897E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000116882051282,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,9.47692307692308E-06,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,61.8815078606851,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.8979751965,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,68.0696586467536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.2244937991249,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.034100906695238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.084395930777287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.037912145371612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021098982694322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.37822349570201,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.37822349570201,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.98125,Mm²,,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000561846153846,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000561846153846,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000426328861538,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000519707692308,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.21384615384615E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.1085291369611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,124.14369172401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.1193820506572,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.0359229310024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.171192941140206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.245959689228194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.190095911213257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.061489922307049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.71919770773639,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.71919770773639,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.55,Mm²,,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000406153846154,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000406153846154,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000308189538462,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000375692307692,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.04615384615384E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.5331137809095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,112.576330130322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.87500876416151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,74.2864251590004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.1440825325806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.81251314624226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.119326285177772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.174493311702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.132548318003283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0436233279255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.00588,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.55396370582617,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.55396370582617,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.7875,Mm²,,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0019488,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.0019488,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00102156096,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00092723904,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00180264,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.00014616,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,161.678852907686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.846738198454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.096082871621782,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.10670865240674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.108298620828487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026677163101685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.200573065902579,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.200573065902579,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.13125,Mm²,,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0007056,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.0007056,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00036987552,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00033572448,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.00065268,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.292E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,165.792363545824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,126.01783712796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.371599900406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.50445928199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.035613685372339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016539841123045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.04011913499466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004134960280761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.076408787010506,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.076408787010506,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.05,Mm²,,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0002688,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0002688,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00014090496,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00012789504,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00024864,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,2.016E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.71050543121376E-20,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,169.905874183962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,127.278015499239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.896461602358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.8195038748099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013881426595296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006363900774962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015629219192002,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001590975193741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.200573065902579,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.200573065902579,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.13125,Mm²,,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0007056,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.0007056,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00036987552,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00033572448,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00065268,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,5.292E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,178.132895460238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,112.641043716827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.946185006262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.1602609292067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.038088863693281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014784136987834,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.042841831147697,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003696034246958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.219675262655205,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.219675262655205,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.14375,Mm²,,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0007728,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0007728,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00040510176,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00036769824,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00071484,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,5.796E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,178.132895460238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,98.0040719344144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.946185006262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.5010179836036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041716374521213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014088085340572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.046922005542715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003522021335143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.286532951289398,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.286532951289398,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1875,Mm²,,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001008,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001008,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0005283936,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0004796064,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.0009324,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.56E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,226.779629963435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.744601285888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,249.457592959779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.6861503214721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.068351554826766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020764612741104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.076535397573853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005191153185276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.133715377268386,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.133715377268386,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0875,Mm²,,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0004704,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0004704,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00024658368,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00022381632,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00043512,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.528E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,220.770327465982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,102.181169089471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,11.7672963819791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.84736021258,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.5452922723678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,17.6509445729687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.031093856101924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008940852295329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.034832629102175,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002235213073832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.039,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.80993314231137,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.80993314231137,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.88125,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00959855022437,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00959855022437,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004590986572316,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005007563652054,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.008005190887125,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001593359337245,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.5703237707247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.727356147797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.663655033511961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.661424266108445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.746047437188565,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.165356066527111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.630372492836676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.630372492836676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.8375,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000888505350362,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000888505350362,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000424972109078,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000463533241284,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000741013462202,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00014749188816,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.7165032341011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,131.437959154969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.088153557511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.8594897887422,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.062785195740745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.110079290792286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.070547271305671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027519822698072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.49665711556829,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.49665711556829,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.325,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000700034518467,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000700034518467,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000334826510183,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000365208008284,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000583828788402,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116205730066,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.8626826974774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,132.752338746519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.448950967225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.1880846866296,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.050533039218723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.043144510092619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.056755205436417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010786127523155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.23400191021968,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.23400191021968,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.85,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007377286848464,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007377286848464,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00352855629962,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003848730548844,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.006152657231619,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001224629616845,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.15504162423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,117.485819790669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.170545786653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.3714549476672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.555006705050052,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.452320406194075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.622825385903337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.113080101548519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.84527220630373,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.84527220630373,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,4.25,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00823886779427,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00823886779427,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003940650465999,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004298217328271,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.006871215740421,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001367652053849,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,116.251387599553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,102.219300834819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.876526359508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.5548252087048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.713912530122368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.434432028547982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.79906039323159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.108608007136995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.53868194842407,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.53868194842407,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,6.0125,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012035208836728,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.012035208836728,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005756440386607,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006278768450121,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.010037364169831,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001997844666897,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.347733574876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,115.507809943346,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.582506932363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8769524858364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.18031380418991,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.694490707284366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.31844062484861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.173622676821092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.114613180515759,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.114613180515759,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.075,Mm²,,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000161546427339,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000161546427339,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.72676561960649E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.42787711425613E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.0001347297204,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.68167069382119E-05,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.483060124556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,106.503419684002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.88364819098956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.231366137011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.6258549210005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82547228648435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015285582614962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0079877564763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.017083878329341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001996939119075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.045,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.28462273161414,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.28462273161414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.5375,Mm²,,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.02222138836773,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02222138836773,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008888555347092,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013332833020638,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.018532637898687,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.003688750469043,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,5.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,128.055374648123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,135.503050675226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.860912112935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.8757626688064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.832004181211443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.614845092438836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.926094384449582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.153711273109709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.544412607449857,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.544412607449857,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.78125,Mm²,,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001924953095685,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001924953095685,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000769981238274,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001154971857411,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001605410881801,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000319542213884,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,5.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,129.128464379811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,140.584415075547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.041310817792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.1461037688866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.072657514109331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109831574277771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.080866605568392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027457893569443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.477554918815664,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.477554918815664,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.3125,Mm²,,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001688555347092,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001688555347092,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000675422138837,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001013133208255,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001408255159475,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000280300187617,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.201554111499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,145.665779475868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.221709522649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.4164448689669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.064247120779111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045520556086209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.071499324127311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011380139021552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.21298949379179,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.21298949379179,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.21875,Mm²,,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004288930581614,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004288930581614,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001715572232645,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002573358348968,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003576968105066,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000711962476548,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,5.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.347733574876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,155.828508276509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.582506932363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.9571270691274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.165790979919809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.189915994461996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.184471905738323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.047478998615499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.3658070678128,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.3658070678128,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.31875,Mm²,,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004829268292683,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.004829268292683,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001931707317073,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00289756097561,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.004027609756098,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000801658536585,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,138.428575387775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,162.06164860757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.271432926553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.5154121518925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.194983289234442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.213718799101233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.216848243190911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.053429699775308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.83667621776504,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.83667621776504,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.28125,Mm²,,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010030018761726,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.010030018761726,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00401200750469,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006018011257036,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00836503564728,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001664983114447,1e6 dimensionless,Own calculations,,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.79,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.509417200675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,148.782349641398,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33191679995935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,158.960358920742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.1955874103494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49787519993902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.422214672380023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.339409735119439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.469351437763538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Greece,gr,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.08485243377986,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,306.649181205735,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.42,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,2.6,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.89844,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.16796,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.3536,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,3.23717647058823,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,1.18282352941177,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,62.9987908101572,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,54.0887950423216,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.699702,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.908056086391686,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.534150639053933,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.800905468197467,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.034506131282884,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.072644486911335,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.842446793783576,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.118375971212848,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.042363431722629,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.966981080340006,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.13027145599123,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.99109679188374,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.831368247874966,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.168631752125034,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,216.394253099512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.3792547102893,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.066446220446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,251.796352906592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.75027039662627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.827640169297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.2018102586262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.082014934699877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.3782569146362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018223718490313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,61.5564000690966,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,53.2478812402833,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.650771,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.88726566050364,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.521920976766847,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.78256831256421,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033716095099138,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.070981252840291,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.831644284011202,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.116837500524942,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.041666524997263,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.3537322856742,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.70334642907254,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.921338571629016,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.927748000561246,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,,insulation,0,0.186614283709836,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.813385716290164,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.186614283709836,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.813385716290164,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.186614283709836,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.813385716290164,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.186614283709836,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,0.186614283709836,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,other,,0,0.813385716290164,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.186614283709836,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,other,,0,0.813385716290164,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,188.41351212798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.61620018669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1987247685683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,219.237962712117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9131196814825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0355555912356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.6342470704857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.189838146585073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.3910888786809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.042182036171203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,37.588529970634,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,39.2746129728796,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.837696,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.541796008771129,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.318703534571253,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.477864079736136,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020588248333303,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.04334368070169,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.472764642850116,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.066438098681767,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.023831993059364,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.34435661764706,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.635041360294118,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.773754595588235,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.213694852941176,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.786305147058823,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.213694852941176,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.786305147058823,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.213694852941176,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.786305147058823,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.213694852941176,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,0.213694852941176,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,other,,0,0.786305147058823,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.213694852941176,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,other,,0,0.786305147058823,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,158.558129114873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.1342260911508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.3979279988451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.498239038066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.91782503745372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.3486632285847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.59380840101197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073754506750804,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.06336680949928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016388251400029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,65.1235101053723,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,55.327506391432,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.77178,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.938681504166893,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.552165590686407,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.827917086675199,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.035669897158342,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.075094520333352,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.89273442783373,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.125315448102429,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.043945446965785,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.36408488063661,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.16225464190981,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.386618037135279,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.62606100795756,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.85212201591512,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.147877984084881,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.85212201591512,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.147877984084881,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.295755968169761,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.860813015511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.8202815130441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0015652080191,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.124442024849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.6256665521984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.2974601939644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.82750309943536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.132547299892225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.9090345333485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.029452010036053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,26.5158058386595,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,32.8192148039385,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.282461,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.382195254349119,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.224820737852423,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.337096214335923,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014523419665267,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03057562034793,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.37286277668097,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.052255440791626,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017724501100507,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.285182410423453,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.248697068403909,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.751302931596091,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.248697068403909,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.497394136807818,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.751302931596091,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.3698444185466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7437482974198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.523142059631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.481550965421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.94226087168669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.689074689328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.44696654403601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045839963185257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.00867951865021,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010185639819764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,35.3688029020556,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,37.9805120918984,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.469395,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.509801161745812,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.299883036321066,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.449644624659806,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019372444146341,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.040784092939665,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.508869770669739,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.071324715131705,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.024252252602836,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.244139194139194,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.348156288156288,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.4297708960273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.0228688892149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.292905393774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.0788814146174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.0040814671835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.327188697934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.78279096533057,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.066156378431468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.52459882098914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014699947287472,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,17.4973415097599,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,27.56145010019,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.593911,Mm²,,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.25220432407172,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.14835548474807,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.222444213831257,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009583764314725,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020176345925738,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.269445589507796,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.037726489802071,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01254393596192,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.312524481916706,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.289717086552941,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.710282913447059,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.289717086552941,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.579434173105881,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.710282913447059,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.0207808298215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.5146317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.0882870305795,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,69.8401805735803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55815117096134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,42.5773695546649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.96422036447071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01752906444688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.04568742755222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003894958120097,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.72,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,2.29297133041701,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.39904,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.10336,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.2176,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,2.28,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,52.3751943340819,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,36.3215382967697,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.058032,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.900335531046302,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.49,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.794095938382839,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03421275017976,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.072026842483704,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.754693018671165,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.106239592663464,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.039402919711674,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,243.05690287833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.5546317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,282.821012189225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.78923917096135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.25123838676443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062882409853699,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.5274065663122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013972471469492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,50.069096562446,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,34.977083295906,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.979801,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.878776530657714,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.46,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.775080900040104,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033393508164993,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.070302122452617,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.736621503639554,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.10369563061761,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.03845939640055,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,204.071074415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.8836529847483,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,237.457102189294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3059476932111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.64253637861826,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.136375925062858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.47773122250704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030302730548967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,29.5560545862843,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,23.0179798238038,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.283926,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.453417936418392,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.31,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.399914619921022,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017229881583899,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.036273434913471,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.380070917291887,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.05350331649737,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019843702629134,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,178.1338760213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.372518731154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,207.276578138385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.97077366206242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.4069482844308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.051835326484416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.20729746535885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011517809544837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,45.8628433235447,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,32.5248376576265,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.83711,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.828937100802628,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.49,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.731122522907918,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0314996098305,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.06631496806421,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.69484433449632,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.09781457789471,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.036278188411598,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.666776276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.4595721027618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.806660874754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5455169212337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.57900527314347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.087188454505705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.83692043539878,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019373274591168,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,13.1888063568837,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,13.4758741060632,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.728691,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.251665439150973,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.221968917331158,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009563286687737,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020133235132078,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.210954853405962,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.029696521819815,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011014063925196,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,141.067731242373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.9862961929608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.146412073625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.55175501407589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.03235688098976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024765508159145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.06100314934167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005502895912962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,18.6992572119537,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,16.688466954569,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.915625,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.377598191987576,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.23,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.333041605333042,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014348731295528,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.030207855359006,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.316516131518997,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.044556586654534,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016525473814045,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.094972820197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.7224591269899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.542110373581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.49293041801715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.41310878351641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03911775163815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.59238417562943,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008691964413997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,7.35878390050095,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,10.0769710139921,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.249636,Mm²,,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.180593766223038,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.15928370180872,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006862563116475,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014447501297843,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.151380068745782,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.021310064414319,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007903633062938,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,121.02221439802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.5146317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,22.826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.821448673536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55815117096134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8779068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.28058047794261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007367914607174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.05887141937511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001637150625714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.13462996400518,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.307028669582993,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.00074362825257,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043115938632197,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.090770397120414,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.957176470588235,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.177453493416943,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.449127655899119,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.04864142338919,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.015236,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.007720555345384,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006809529814629,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000293381103125,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000617644427631,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.006513078405218,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000911025530755,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00029645140941,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,84.9452219948337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.5146317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.8422603131885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55815117096134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.486717799312429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000449684929076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.619167999009088,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.99199912407669E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.483675937122127,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.0687830713422,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.016408,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.008489129845926,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007487412524107,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000322586934145,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000679130387674,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.007161449637383,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001001717321819,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000325962886724,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,120.167731242373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.526407802973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.827172073625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5595678138206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.686543769777581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001370501299231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.871526353606567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000304525388689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,5.76092589393678,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,9.14541979616514,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.195431,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.088378072352738,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.077949459815115,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003358366749404,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007070245788219,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.074555946921563,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.010428612537623,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003393512893552,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,86.5278001753107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.2574116673973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.683748283991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.72299687249568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.89082511885371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007672115219571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.19409337806452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001704744001789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,6.07186042494386,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,9.32669462774227,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.205979,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.109744403364265,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.096794563767282,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004170287327842,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008779552269141,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.092580633344299,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.012949839596983,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004213930422983,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,52.8878691082484,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.6791904675726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.5403244943578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8165161218946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.624392776960142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01002689097332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.86201677644365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002227975174272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.84055968215581,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,9.77484629469684,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.333727,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.130529815198147,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.115127297004766,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00496013297753,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010442385215852,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.110115255000728,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.015402518193381,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005012042004038,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,44.1769259610074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.4829766600309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.4042710482283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.32871741385887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.58909466579054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012509081351822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.826984891592693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002779517876375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.54689929176024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,9.60364228709622,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.222094,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.132202969758237,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.116603019326765,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005023712850813,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010576237580659,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.11152673207024,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.015599950431472,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005076287256524,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,29.9607749551842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.6033803582393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.8623577378523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5774711156008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.447928686974157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010572425157283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.645390411925424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002349192869948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.91796683365003,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,7.48797466401797,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.099327,Mm²,,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.071610557848682,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.063160512022537,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00272120119825,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005728844627895,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.060410832776265,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.008450045826144,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002749679246273,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,15.7446239493609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.5146317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,18.3204444274763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55815117096134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.190092538406172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002931599826094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.275611324175914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000651401481358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,40.81,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.565370035994821,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.482823529411765,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.082546506583057,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,10.1744688201762,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,11.7185153221627,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.626434,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.095130110327368,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.070396281642252,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019026022065474,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005707806619642,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.081240696707193,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.011225353018629,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002664060601545,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,84.9452219948337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.5146317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.8422603131885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55815117096134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.20213859116651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018488968814717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.64096118197734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00410824887063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,11.0036275695284,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,12.2019148730351,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.654562,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.102882649029768,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.076133160282028,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020576529805954,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006172958941786,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.087861330734265,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.012140152585513,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00288116570999,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,0.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.167731242373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,83.526407802973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.827172073625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5595678138206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.65979449055657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.05467321254433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.22817116856393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01214838782735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.27154949041285,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,7.11111335291069,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.358339,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021238725820117,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015716657106887,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004247745164023,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001274323549207,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.018137778636665,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.002506169646774,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000594777536678,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,86.5278001753107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.2574116673973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.683748283991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.72299687249568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.631166388009215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014067461639484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.823735818766372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003125789976293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,13.1888063568837,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,13.4758741060632,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.728691,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.123313818735051,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.091252225863938,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02466276374701,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007398829124103,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.10530945999311,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.014551030610736,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003453328131205,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,52.8878691082484,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.6791904675726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.5403244943578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8165161218946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.02517223761915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035472087981006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.4549864304516,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00788189794938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.48643979961997,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,9.56839440317844,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.220043,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.060647464223984,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044879123525748,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012129492844797,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003638847853439,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.05179266827428,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00715640077843,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001698395171274,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,44.1769259610074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.4829766600309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.4042710482283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.32871741385887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.570812766916534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008247866633203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.799572940972083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001832675965898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,10.1226463983417,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,11.6883028502332,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.331676,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.094645576658468,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.070037726727266,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018929115331694,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005678734599508,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.080826907080501,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.011168178045699,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002650491532267,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,29.9607749551842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.6033803582393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.8623577378523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5774711156008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.605179314956981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015788898783699,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.887699980460464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003508293309738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,7.22059077560891,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,9.99640442218,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.244948,Mm²,,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.067511691200067,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04995865148805,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013502338240014,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004050701472004,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.05765468798575,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.007966379561608,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001890623652709,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,15.7446239493609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.5146317324993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,30.1819469365309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,18.3204444274763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.55815117096134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4399841948393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.346396969185773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007229550013612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.525683283963416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001606406013025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.064,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,29.0394202898551,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,29.0394202898551,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,6.032718,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.042851766578723,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.018607525709379,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021627294300704,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019979877056114,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.038895524015176,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003956242563547,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.700624517809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2466472078731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.46067944377473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.106861834577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5161924110705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.89753379927671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.16998098512905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.472039957050586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.32700126984731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.184095583249728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,26.0193236714976,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,26.0193236714976,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.8788,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.109697454397414,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.016672345016722,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050892029325424,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.05765902974599,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.101008327212147,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.008689127185267,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.387660269888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.3067380782136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.61958897642145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.614971172446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4896278505033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.06915609453516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.17454610840881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.489743651814202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.33700825826067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.191000024207539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,10.8407533333333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.8407533333333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.169,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.063984296890047,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.006946405759674,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029800474809241,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033501928263339,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.058911028339799,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005073268550248,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-8.67361737988404E-18,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.829601162391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.6262514047619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62447600335609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.884849604099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.7842380478572,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.07443408362457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.40337971854816,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.187892339296929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.91837194450197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.073278012325802,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,11.487922705314,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,11.487922705314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.7666,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.06109763576135,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007361091060112,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.028026958977084,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.032637296528621,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.056275783499713,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004821852261637,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.871644173747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.717010932742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.32684439824597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.722868959771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.0396342637694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.75299195010564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.26595171895749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.234378082446524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.72865505914825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.091407452154144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.79710144927536,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.79710144927536,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.602,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03943920775868,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003714595993328,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018030006536459,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021385081222221,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.036153506605002,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.003285701153678,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-9.54097911787244E-18,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.00463437876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.7358029196945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.8781299321536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.186395442689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.6569631386809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.34838032672589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.677581242382108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.134144756277351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.924839279822694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.052316454948167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,14.3285024154589,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,14.3285024154589,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.2958,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.077345391854634,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009181243096843,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035013838874012,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042187149636346,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.071168903179827,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006176488674807,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.30104260698261E-17,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.0032374255293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,85.5149651878824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.40503131686187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.48446764723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.3508364232741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.83743382221082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.45302862362286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.281840222266223,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.98194569931576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.109917686683827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.36714975845411,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.36714975845411,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.6498,Mm²,,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.012890244795796,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001516793363942,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006152895297491,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006662333562783,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.011711533135711,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001178711660085,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,86.6208479743557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.1741614607114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.85279264761019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.536770204611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.4179229696774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32101605941901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.218898956061658,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04235017011717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.257924228354467,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016516566345697,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.28570048309179,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.28570048309179,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.3402,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018531913611904,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00115175746065,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009050986608054,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00948092700385,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.016613860553072,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001918053058832,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.323576089934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2110924461406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.906535004109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5023260539948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.156474759916798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026607413650177,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.214245634247208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010376891323569,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.657004830917875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.657004830917875,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.2268,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009469979150894,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000407316405537,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004625137817297,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004844841333597,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.008489836308776,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000980142842118,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.433893844728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.7363159749108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.438773505725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3671632302152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.080689532782412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01649659646311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.110488187525125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006433672620613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.473429951690821,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.473429951690821,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0882,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006823955564615,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0004217149047,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003332819897758,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003491135666857,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.006117676163677,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000706279400938,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.589274931181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.4636791346599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.313199405029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6508348625173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.061531499756474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006479496499677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.084291337046058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002527003634874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.376811594202899,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.376811594202899,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.1746,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005431311571836,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000289292964472,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002652652571685,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002778659000151,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.004869170824151,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000562140747685,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.110080787196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.5865848038871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.051911486331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.358768073516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041257253033196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011800617706759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.056439842408317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004602240905636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.038647342995169,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.038647342995169,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1116,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0003,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004884,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005116,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.008965,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001035,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.668809768019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.7094904731143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.922957479866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.0667012845146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004059869807197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0068867791368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.005551833997779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002685843863352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.657004830917875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.657004830917875,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.2268,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009469979150894,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00059684128411,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004625137817297,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004844841333597,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.008489836308776,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000980142842118,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.385061897349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.155636330534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.531385418342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.9006981689083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.068831363000559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012736098319765,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.094123913226168,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004967078344708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.473429951690821,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.473429951690821,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0882,Mm²,,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006823955564615,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000559084098312,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003332819897758,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003491135666857,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.006117676163677,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000706279400938,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.8588608719472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.5453629817987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.525228003287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6626915629015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046509371361281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004899101014995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.023560799860692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001910649395848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.026,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.888888888888889,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.888888888888889,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.27,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012812324733562,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000627475818338,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005701484506435,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007110840227127,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.011851400378545,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000960924355017,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,143.724464926155,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.3726433240536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,198.339761598093,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.9553308963809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.132346063655267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021430613697495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.181260272727996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008357939342023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.21256038647343,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.21256038647343,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.6668,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.089547008735659,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.007253975743678,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039848418887368,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.049698589848291,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.082830983080484,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.006716025655174,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.225278202987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,99.215804155067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,208.690883920123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.6941636204761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.971583156846689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.165372902365666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.33115866123362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.06449543192261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.50742,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.50742,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.3852,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.050555479519115,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.004157768031061,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022497188386006,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028058291133109,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.046763818555182,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.003791660963934,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.255862608648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,100.207962196618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.153090399934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.0811052566809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.580199939268507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038600107038137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.795241319699235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015054041744874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.59420289855072,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.59420289855072,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.774,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.051806356531361,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004254499106922,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023053828656456,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028752527874905,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.047920879791509,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003885476739852,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.569083839702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,108.224599172347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.465335698789,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.2075936772154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.50942053986057,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.083765839759397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.697431282146138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032668677506165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.96135265700483,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.96135265700483,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.4698,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.028270673053404,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002329324878037,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012580449508765,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015690223544639,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.026150372574399,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002120300479005,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.081519959792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.241236148076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,200.212497544513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.3340820977498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.294686130039614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.054610132742366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.403627827839414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021297951769523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.52173913043478,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.52173913043478,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.9468,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.065175738862035,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005354445314778,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029003203793606,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036172535068429,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.060287558447382,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.004888180414653,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.742513955578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,117.403648509557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.324669258697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.7874229187273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.637146371596793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.111157774408849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.872255752429494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043351532019451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.357487922705314,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.357487922705314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.171,Mm²,,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005152782773281,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000403311107187,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00229298833411,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002859794439171,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004766324065284,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000386458707996,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,133.373836078683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,78.2110924461406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.16485668602085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.055893788583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5023260539948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.57804522090252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.049525909490764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01337409680829,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.067791842930927,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005215897755233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.017,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,5.76135265700483,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.76135265700483,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.17774,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005160013357815,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005160013357815,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00391541813591,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.004773012355979,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000387001001836,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.3201244703074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2110924461406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.0417717690242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5023260539948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.416062330425519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.092112332017518,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.570889027646935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035923809486832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.29468599033817,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.29468599033817,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.0908,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004752882777781,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004752882777781,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003606487451781,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.004396416569448,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000356466208334,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.8615184423922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,85.2500907662932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.548895450501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.2475353988544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.395817374042963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.092990799007873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.54321642224591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03626641161307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.07246376811594,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.07246376811594,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.6768,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00282708879547,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00282708879547,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002145194978003,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00261505713581,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00021203165966,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.7483446048575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.1025916739562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.532715554703,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.5800107528429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.238559312850451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.058274234044934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.327464271166443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022726951277524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.02898550724638,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.02898550724638,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.4824,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00179676722904,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00179676722904,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001363386973396,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001662009686862,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000134757542178,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.4506333165801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,74.4787417979721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.4218739768805,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.0467093012091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.126500334365551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035928545043342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.173416398785757,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014012132566903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.028985507246377,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.028985507246377,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1098,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,-6.56506667331871E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.588E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,9.25E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,7.5E-06,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.4897859704619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.854891921988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.3359046392374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.5134078495753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001721325971587,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006901467133034,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002358943231666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002691572181883,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.85024154589372,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.85024154589372,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.2628,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000598687165325,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000598687165325,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000454283821049,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000553785627926,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.4901537399378E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,5.42101086242752E-20,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,47.5586104970237,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.6545767910663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.6308824858927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.9452849485159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.042048330512815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018830822780692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.057543088906705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00734402088447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.357487922705314,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.357487922705314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0666,Mm²,,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000311011341301,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000311011341301,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000235995405779,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000287685490704,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.33258505975851E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,44.4373839196574,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,64.977156110452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.89596004929879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.3235898091273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.3410908830763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.0476368532427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016563610887453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004327478596956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022654448178818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001687716652813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.011,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.04347826086957,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.04347826086957,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.6714,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002346302770284,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002346302770284,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001229931912183,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001116370858101,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.002170330062513,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000175972707771,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,122.505058945641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2110924461406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.056981344984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5023260539948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.409055173444854,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052510927468339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.553632032444723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020479261712652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.79710144927536,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.79710144927536,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.8118,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003092823817418,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003092823817418,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001621258245091,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001471565572328,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.002860862031112,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000231961786306,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.426753637877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.7363159749108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.228920020271,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3671632302152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.53283030141497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.059047341308433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.721751549237402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023028463110289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.24154589371981,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.24154589371981,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.522,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001899052682248,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001899052682248,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000995483416034,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000903569266213,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001756623731079,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000142428951169,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.458766084908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.4636791346599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.933097197173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6508348625173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.330308710758239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038348040508293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.447824519884691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014955735798234,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.21739130434783,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.21739130434783,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.3312,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000940593664472,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000940593664472,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000493059198916,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000447534465556,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000870049139636,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,7.05445248353885E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,117.940419287042,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,65.015356034174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.757778616118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.3559888533278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.158065116750082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021533085918519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.213784218351443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008397903508222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.463768115942029,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.463768115942029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0864,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000335289014052,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000335289014052,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000175758501166,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000159530512886,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000310142337998,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.51466760538792E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.758936431335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.5670329336881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.607332275242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.0611428441384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.057812276029683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004887391645471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.078125457963374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001906082741734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.657004830917875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.657004830917875,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.2268,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000375844630951,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000375844630951,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000197017755544,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000178826875406,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000347656283629,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.81883473213015E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.4104496459188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.9207472150675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.186420511368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9290914138763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.073130704071922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014497225468377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.098575104096002,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005653917932667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.463768115942029,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.463768115942029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0864,Mm²,,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000390893420575,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000390893420575,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000204906331066,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00018598708951,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000361576414032,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.93170065431389E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,97.1404666805615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,58.9525788903434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,11.8987837576683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.053844019175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.9915057672339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.8506864582817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.050568927739469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005093502816126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.068129637322879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001986466098289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,14.0889855072464,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,14.0889855072464,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.729178,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001647360102921,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001647360102921,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000787932337227,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000859427765694,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001523808095202,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000123552007719,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,98.4481742584304,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2110924461406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.858480476634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5023260539948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47085579629972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.213451992859973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.00463473010626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.08324627721539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,7.6328502415459,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.6328502415459,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.5264,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000725708271046,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000725708271046,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000347106266041,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000378602005005,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000671280150718,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.44281203284613E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,105.381491793924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.8647596727564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.426458675615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.587256272375,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.849771962333129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.115799969164495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.1590620628479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045161987974153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.966183574879227,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.966183574879227,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.2844,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0004783,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0005217,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000925,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,7.5E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.745885546708,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.6234072694839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.969322054457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.8831288350987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.115647611039171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021791697027441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.157869241819901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008498761840702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.51207729468599,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.51207729468599,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.5724,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000191428745536,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000191428745536,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.15603689899251E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.98683765461926E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000177071589621,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.43571559152088E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.1302718786747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.8117154334933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.899775192571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.4465690190624,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.251407850985046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038815425914132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.342459234682561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015138016106511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.3768115942029,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.3768115942029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.5472,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000263349298068,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000263349298068,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000125959969266,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000137389328802,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000243598100713,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.97511973551051E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.4553144652815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.0000235975026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,122.068333962088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.010009203026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.224382200586014,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032284812912554,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.305405261729878,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012591077035896,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.29468599033817,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.29468599033817,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.0908,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000563714793679,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000563714793679,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000269624785817,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000294090007862,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000521436184153,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.22786095259359E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.7011392111442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.670026665178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.327572111379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.0013103994194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.416429865094764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.072723665086376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.565223165281206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028362229383687,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.386473429951691,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.386473429951691,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1764,Mm²,,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.97273354856358E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.97273354856358E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.43558456277962E-06,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.02917509228562E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.82477853242131E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.47955016142269E-06,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.5545248852084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.4770161316743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.94939187883414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.3652443415876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.976036291353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.42534322914087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.029566731116538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010844545645627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040112304375161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004229372801795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.97101449275362,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.97101449275362,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.8442,Mm²,,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002353852002236,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.002353852002236,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000941540800895,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001412311201342,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001963112569865,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000390739432371,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,142.984253089625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2110924461406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,197.318269263683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5023260539948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.585186861386901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.066025804243032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.802339572674189,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025750063654783,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.42512077294686,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.42512077294686,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.5562,Mm²,,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002109051644615,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.002109051644615,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000843620657846,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001265430986769,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001758949071609,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000350102573006,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.407990587769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,81.1459443310007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,189.623027011121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.6469182890903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.343853780988649,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045133374236903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.471331375170726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017602015952392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.579710144927536,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.579710144927536,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.2124,Mm²,,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000878720328599,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.000878720328599,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000351488131439,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000527232197159,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000732852754051,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000145867574547,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.67349091672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,85.5443503220312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.569417465074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.3622966255922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.077132644875321,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0181696200084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.105681254885645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007086151803276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.75845410628019,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.75845410628019,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.432,Mm²,,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000931178019104,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.000931178019104,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000372471207642,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000558706811463,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000776602467933,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000154575551171,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.5845937824792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.9427563130617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.666739419821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.0776749620941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.179300623963044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038855270727243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.245124082774032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015153555583625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.927536231884058,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.927536231884058,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.2772,Mm²,,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000469896393156,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.000469896393156,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000187958557262,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000281937835894,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000391893591892,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,7.80028012638994E-05,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.954699700744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.5404665655841,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.177485587027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.4807819605778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.094919439948013,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02592941733198,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.129769955060583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010112472759472,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.34782608695652,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.34782608695652,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.5418,Mm²,,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001161427251751,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.001161427251751,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0004645709007,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00069685635105,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00096863032796,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000192796923791,1e6 dimensionless,Own calculations,,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.3820073023136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,85.8757795058624,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.38032149320755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.587170077193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.4915540072863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73074721266416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.215441989346006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046527497336276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.294224675376186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Hungary,hu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018145723961148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,164.29670543659,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.77826747318143,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.14,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.21989148660246,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.286301063182211,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.272074923396759,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,1.58,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,26.5691882114085,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,24.7567428236032,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.357676,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.2875719452781,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.184354728723977,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.197274354460777,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.046299083189774,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.043998507627549,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.283493311042776,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.009014752158036,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013172787453664,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.01419406701108,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.74567762680443,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.14982261591854,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.5400780555336,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,WALLS,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.102192377705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.66502395752685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.4823407053141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,197.982002107729,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.69460867935848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.9646814106282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.99885414116488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003456947109032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.7540959581884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000963796853998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,26.8254136220114,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,25.0083561768152,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.347512,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.290345204256525,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.186132591325123,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.199176810119976,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.046745577885301,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.044422816251248,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.281530050519691,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.009705385733042,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018031795417648,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,2.04842044871633,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,5.67043705810206,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.685912588379588,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.171272052459,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.541055339110367,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.458944660889633,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.270527669555184,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.729472330444816,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.229472330444816,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.770527669555184,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.229472330444816,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.458944660889633,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.770527669555184,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.541055339110367,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,142.141144343283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.72082355362559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.5530357215528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.287718213236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.71016560675081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.1060714431056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.97193298142549,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003378102834768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.71825804665127,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000941815070333,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,20.7077037068607,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,19.0007650401372,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.35453,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.224130093469226,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.14368384419572,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.153753244119889,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036084945048546,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.034291904300792,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.213130257568512,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.008511889729008,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012846782128351,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.74372311958015,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.90990424606392,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.734415320629774,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.41233371300593,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.616293231583492,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.383706768416508,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.616293231583492,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.616293231583492,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.383706768416508,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.383706768416508,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,126.940845900863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,10.9955125227452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.1916389698233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.404028183196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.06554889134136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.3832779396466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.72655714556727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003898239054689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.94297787877978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001086829048447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,27.0824158655146,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,25.2607323799353,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.31581,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.29312687129569,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.187915844110473,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.201085033708843,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.047193426278606,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.044848411308241,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.278410411807412,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.011250469481244,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.024530932790497,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.603826903588156,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,4.12189734501527,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.20392700492975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.29830692289381,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.70169307710619,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.29830692289381,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.70169307710619,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.59661384578762,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.40338615421238,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.40338615421238,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.59661384578762,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.40338615421238,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.40338615421238,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.59661384578762,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.59661384578762,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.3102196844172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,13.7956566410603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.7644128693579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.216510824421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.84622907152761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.5288257387159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.37985115488569,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004356806323813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.53698362467344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001214677603079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,16.5735446985447,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,14.9410208939709,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.434027,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.179383971056652,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.114998294738375,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.123057404144863,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028880819340121,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.027445747571668,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.171830788775137,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.005222882262699,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005386810489234,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.546368447978048,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.8072631040439,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.268890631125049,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.747362856491729,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.973846250160721,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.026153749839279,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.973846250160721,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.973846250160721,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.026153749839279,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.026153749839279,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.4722958719574,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.2056386626228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.0718772149126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.934787298482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.96053205913923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.1437544298253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.45050016091648,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006165630731822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.13886176781639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001718977848032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,34.4594594594595,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,32.5049891891892,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.800173,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.372972396113086,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.239102687296095,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.255859063733577,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.060048555774207,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.057064776605302,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.369543885208088,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.010819351434461,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018164632239873,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.271675280752262,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.35612647407617,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.175236646108597,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.480176347509427,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.876355512254902,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.876355512254902,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.876355512254902,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.876355512254902,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.876355512254902,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.876355512254902,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.123644487745098,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,69.1552517964262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.5963423768801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.326665794332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.0124004431099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.06946025467418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.653331588664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.7415798711475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011679599068735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.07575536750022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003256272220363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,12.0789798727911,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,10.5273582350808,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.288827,Mm²,,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.130736991712153,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.083812009610237,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.089685576314537,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021048655665657,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020002759731959,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.133440188488942,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00324631544717,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005419780701396,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.210911017564135,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.30273305269241,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.15973970926739,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.312378704091848,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.765490102436457,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.234509897563543,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.765490102436457,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.765490102436457,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.234509897563543,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.234509897563543,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.427008717017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.60107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.5414687963781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.4033672763097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67677978806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.0829375927562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.738091369105094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002773049769897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.12403576080346,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000773126275847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.49,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.02214,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.23989,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.22797,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.45,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,12.1361746361746,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,11.4730234927235,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.288706,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.275263278203218,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.188830608847407,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044317387790718,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.042115281565092,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.26787365999642,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.005505265564064,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001884352642733,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.328,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.70666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.117260095112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.74107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.142003644674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.71581178806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.6914993471607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002812306879788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.43114932341751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000784071158085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,11.5904365904366,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,10.9371087318087,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.278542,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.273342840641898,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.187513188680342,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044008197343346,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.04182145461821,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.266004777805874,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.005466856812838,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001871206023186,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.440455665091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.12102151600061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.76,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.725342038269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.54294079866097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.45488054933848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00254058757511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.09871357426212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000708315815941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,11.3175675675676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.6691513513514,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.27346,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.19876226072381,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.136350910856534,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.032000723976534,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.030410625890743,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.193426361107063,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.003975245214476,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00136065440227,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,5.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.492519330106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.39465216148063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.76,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.049072307633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.6192290226208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.39860604976285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002569061580079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.01904723555297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000716254368526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,9.88825363825364,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,9.26556507276507,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.24684,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.265318076575489,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.182008200530785,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042716210328654,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.04059366571605,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.258195443647288,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.00530636153151,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001816271396691,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.805705335486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.1859247638357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.76,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.123058560424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.95503582415741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.06081862748153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003501653668705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.54264736219293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000976261042835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,14.9363305613306,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,14.2227766112266,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.340857,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.166005222148617,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.113879582393951,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026726840765927,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.025398798988738,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.161548706117781,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.003320104442972,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001136411587863,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.1797643513349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.1859247638357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.76,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.280678242299,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.95503582415741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.38857111546742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004835371757227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.0364363746675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001348101645915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,28.2744282744283,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,27.3207885654886,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.622303,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.349206033885435,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.239555339245408,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.056222171455555,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.053428523184472,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.339831375257638,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006984120677709,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002390537950088,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.5510151174549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.3277840114741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.76,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.799539669871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.99458618239898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.45316944298815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008916222973692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.61399754262786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002485842965065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,9.08913721413722,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,8.48083274428275,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.231957,Mm²,,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.128514257071713,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.11,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.088160780351195,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020690795388546,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019662681331972,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.125064209902003,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002570285141434,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000879762028276,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.4549047251725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,9.60107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.76,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.6762936019145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67677978806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.52,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.697140292822244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002227036618723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.03610520153093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0006208978093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.076863260532297,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.14406,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03381,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03213,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.542680934901247,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.088212678073025,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0101070633895,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.012308667074882,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008443745613369,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001981695399056,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001883226062457,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.007619651046356,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001698596056334,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002990419972193,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,155.020730283806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.60107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.982981336921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67677978806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022855402039232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.70386764623279E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03714901569583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.7054382997697E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.72094376754158,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.263266779725832,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0134270874287,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.017002363614628,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011663621439635,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002737380541955,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002601361633038,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.010525272713817,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002346326178819,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004130764721992,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.172108794685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,10.1771397968007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.060460273018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.83738657534803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054364300487845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000136649345826,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.082327219128207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.80978376162176E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.44445006860707,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.973749967372141,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.02690190030176,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025367832745417,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017402333263356,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004084221072012,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003881278410049,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.015703896461448,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.003500760918867,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006163175365101,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.855741550894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,12.9249675419369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.147803316773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.603480950692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.16062048491238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000347706188217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.235975839491119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.69404852748074E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.03641794451663,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.573062421515333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01930257945242,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027808794720201,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019076833178058,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004477215949952,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004254745592191,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.017214968160124,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003837613671388,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006756212888689,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,64.3732085702154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,13.5712159190337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.4423512546189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.7836549982266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054423092173907,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000261959473543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.085749438754376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.3034301223815E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.2037537952183,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.737386226904366,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.02241909588336,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013378748908035,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009177821750912,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002153978574194,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002046948582929,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.008282082657355,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001846267349309,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003250398901371,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.8950338319226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,14.3854888741757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.5331869816785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.01067429812019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.068954159437169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000322509654399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.10748606329427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.99156916464841E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.92430897219335,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.44497141069387,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.035838946077,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023766362227651,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016303724488169,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003826384318652,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003636253420831,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.014712509950451,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003279757987416,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005774094289785,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.9174766145804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.8240377615933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,54.842621120772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.41174172793221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.090233412926556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000567116836058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.144353620469923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000158112173893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.157202326013513,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.15437268414527,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00311402962442,Mm²,,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.00222273464044,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001524795963342,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000357860277111,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000340078399987,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.001375978586939,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000306737380381,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00054001867312,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,10.7821319791957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,9.60107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,14.8135711262169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67677978806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004323880097056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.98980328482086E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007605637621769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.33557155808055E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,96.4052857884,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.078267473181432,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,13.8903326403326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.1956066528067,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0588629366105,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.018108905376375,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013400589978518,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003621781075275,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001086534322583,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001810890537638,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008298014838737,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,155.020730283806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,9.60107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.982981336921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67677978806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.28057725395657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000565147485599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.28040899366535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000157563118985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,14.5140332640333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,13.8080806652807,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0555429125713,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.018922027413855,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014002300286253,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003784405482771,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001135321644831,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001892202741385,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012029824672469,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,160.172108794685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,10.1771397968007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.060460273018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.83738657534803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.45720530218571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00056526798596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.5296843939298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000157596714486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,7.94568607068607,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,7.35796372141372,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.05416809969824,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010358835956645,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007665538607917,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002071767191329,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000621530157399,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001035883595664,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00532295236098,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,139.475285235467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,12.9249675419369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.625094385008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.603480950692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.16067235653497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000700120930408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.67880702807452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000195193715398,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,16.1577442827443,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,14.5327048856549,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.04966742054758,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021064942783463,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015588057659763,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004212988556693,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001263896567008,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.002106494278346,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015958448505117,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.3732085702154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.5712159190337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.4423512546189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.7836549982266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.20885963244495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000674047288393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.83199216967941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000187924384004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.433460341995842,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.425658055839917,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.07075090411664,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000565104704175,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00041817748109,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000113020940835,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.39062822505272E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,5.65104704175454E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.8950338319226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,14.3854888741757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.5331869816785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.01067429812019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.035381660412169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001017786344008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053201997203148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000283758832709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,4.26072221283784,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.73932921300676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.142031053923,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005554727693364,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00411049849309,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001110945538673,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000333283661602,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000555472769336,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.9174766145804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.8240377615933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,54.842621120772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.41174172793221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.221343812055844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002247504760596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.349233066557623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000626604327254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.83264033264033,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.33695280665281,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.05375597037558,Mm²,,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003692929253554,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0008,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00273276764763,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000738585850711,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000221575755213,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000369292925355,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,10.7821319791957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,9.60107528000064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.9171379969927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,14.8135711262169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.67677978806418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.8342759939853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.073117500993606,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000516115118325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.130458951426211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000143892894989,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.068,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.42024387825915,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.42024387825915,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.69648,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021138803965174,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003760217983651,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010230686116169,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010908117849005,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.019207828856061,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001930975109112,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,217.14022560699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.5461927465566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.65310874082483,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.997236887339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.0641014303307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.445380723095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.765427781798314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031025532324122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.815531903198173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019546085364197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,5.36333895112521,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.36333895112521,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.020053,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.038076213433478,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005896457765668,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018124835091257,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019951378342221,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.034697563064862,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003378650368616,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.04083408558608E-17,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,217.422403992399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.6050551893509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.56633205587313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,228.293524192019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2811847692911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.3091413277208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.201327512661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031218778361063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.27970696982432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01966783036747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.95558639833449,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.95558639833449,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.814011,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027339370338189,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.004348773841962,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012967289961667,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014372080376522,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.024961701325174,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002377669013015,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,186.158207575056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.147321638437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.50837035826844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.466117953809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.9928126322153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2181414624815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.762109295086709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024540251434226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.81360185889858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015460358403562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,13.0167542381283,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,13.0167542381283,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.140225,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.08521820491903,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.014310626702997,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.040476766123743,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044741438795287,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.077836016550115,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.007382188368915,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,0,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,146.876226892614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.4259678616012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.84686775315407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.220038237245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.7983597528088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.7495823724519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.0009757437285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.067258642066596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.14736900823368,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.042372944501955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,16.9326856349757,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,16.9326856349757,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.729331,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.110903812260558,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.018615803814714,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.052637703799135,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.058266108461422,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.101298568060167,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.00960524420039,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,5.20417042793042E-17,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.95734027806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1116030225172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.89002447826762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.705207291963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.9703099041859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8173384308802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.74051054826814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.08218453158905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.9382027173056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.051776254901102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,12.0650342024388,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,12.0650342024388,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.000929,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.084845704995424,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.013264305177112,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.040486092048612,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044359612946812,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.077255980753498,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.007589724241926,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,8.67361737988404E-18,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.382873395698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.8997985639045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.76286022982395,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.852017065482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.9468730952598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.6176905608236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.88390361675681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.053824587040675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.0205277503838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.033909489835625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,7.0982452661842,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,7.0982452661842,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.286712,Mm²,,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.058960483759154,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.007803814713896,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.028054764520708,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030905719238446,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.053520101616118,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005440382143035,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,0,1.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,146.071783178438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.4043696847055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.623731844652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.37537233736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3747529013645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.3992589961036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08387021668021,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031401395325747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.20251250158382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019782879055221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.12025379200952,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.12025379200952,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.20314,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01212508111313,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000241711229947,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005921889615653,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006203191497477,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.010870135217921,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001254945895209,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,222.572937770399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.701584658919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.256466025895595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016132310247435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.272995808337371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003863355455884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.69525131357192,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.69525131357192,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.287298,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018348574073852,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00036577540107,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008961443577669,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009387130496182,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.016449496657208,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001899077416644,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,231.837364391792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.0744734179102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,243.429232611382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.6869182532835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.40380898651575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008065740064019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.429608358639204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005081416240332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.06077128977892,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.06077128977892,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.194434,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011481271496504,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000228877005348,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005607452998892,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005873818497611,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.010292959896616,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001188311599888,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,202.064247843433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.2148457849998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.167460235605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.7753528445499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.221093331338289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005485925325361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.23565767474351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003456132954977,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.21205512045207,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.21205512045207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.509301,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.034765719297824,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000693048128342,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016979577305057,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017786141992767,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.031167467350499,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003598251947325,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,172.291131295074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.3552181520893,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.905687859827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8637874358163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.573845981002632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014441340960077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.613165712722026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009098044804849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.17368890651333,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.17368890651333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.650048,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.045173974766617,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000900534759358,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022062969276016,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023111005490601,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.040498468378272,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.004675506388345,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,182.114748430319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.8183832477551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.220485851835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.0055814460857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.786646271248431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015483092393437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.83978768713727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009754348207865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.97541389907802,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.97541389907802,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.621028,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.043027942711196,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000857754010695,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021014847220148,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022013095491048,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.038574550640587,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004453392070609,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,171.391892495771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.6747287554571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.961487120559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.655079115938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.706648111547967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013460613449544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.755133605089482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008480186473213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,3.30127887379796,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.30127887379796,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.54432,Mm²,,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.035731433722764,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000712299465241,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017451232230198,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018280201492566,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.032033230332458,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003698203390306,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,160.669036561222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.4405629669433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.702488389283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.5075546691743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.55141837132745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011670527234167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.62991192902612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007352432157525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.014,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.515515019331813,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.515515019331813,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.114629,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005579683344095,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000449382716049,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002482959088122,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003096724255973,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005161207093288,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000418476250807,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,307.388536790395,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.5398148243828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,322.757963629915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4700833393612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.162330954845707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005907957433504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.172458627215104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003722013183108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.45732130464955,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.45732130464955,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.252474,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015773335607346,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00127037037037,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007019134345269,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008754201262077,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.014590335436795,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001183000170551,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,267.119263164454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,280.475226322677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.400211851974443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00762158559324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.425907739192113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004801598923741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.18965004461188,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.18965004461188,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.213297,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012876192332528,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001037037037037,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005729905587975,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007146286744553,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.011910477907588,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00096571442494,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,226.849989538514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.489481883967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,238.192489015439,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2083735868992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.27879720946661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006503315017405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.297378126771735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004097088460965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.56895013383563,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.56895013383563,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.561537,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.038628576997582,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003111111111111,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017189716763924,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021438860233658,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.035731433722764,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.002897143274819,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,174.709252436057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.9286404346844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.44471505786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7450434738512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.650303937739729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018490649963771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.6967423051221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011649109477176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.62972142361455,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.62972142361455,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.716794,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.050109848494086,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.004035802469136,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022298882579868,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027810965914218,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.046351609857029,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.003758238637056,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,183.777206714745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.3677989854018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.966067050483,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.2817133608031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.885570821426992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025351426105942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.947910808668743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015971398446744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.97412511152969,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.97412511152969,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.474477,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.032190480831319,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002592592592593,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014324763969937,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017865716861382,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.02977619476897,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002414286062349,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,174.94350792159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7214769752558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.69068331767,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5045304944111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.542616653238477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016949019230789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.581350127979888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010677882115397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.72499256468722,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.72499256468722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.303912,Mm²,,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018670478882165,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001503703703704,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008308363102563,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010362115779602,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.017270192966002,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001400285916162,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,166.109809128435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.50229811896067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.415299584856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7786080467683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.299479594141437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009174375661703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.321183106254612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005779856666873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.693962526023595,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.693962526023595,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.140747,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000498664292075,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000498664292075,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000498664292075,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000461264470169,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,3.739982190561E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,211.918091492941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.5398148243828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,222.513996067588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4700833393612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.148974392549058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007254074317087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.157416924979099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004570066819765,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.991375037176564,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.991375037176564,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.184277,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000712377560107,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000712377560107,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000712377560107,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000658949243099,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.34283170080143E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,173.590871408352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.27041497877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.174823911548135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005562881438744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.184984839700669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003504615306409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.793100029741251,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.793100029741251,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.155257,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000569902048085,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000569902048085,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000569902048085,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000527159394479,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.27426536064114E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.263651323764,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.9044903500238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.026833889952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.729828920515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.109461809849522,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005108652458274,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.116070686402099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003218451048712,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.52800634480024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.52800634480024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.409182,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001816562778272,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001816562778272,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001816562778272,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001680320569902,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00013624220837,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.1203153540938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.2335352535241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.926331121798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.9371272097202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.249954917207376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013598564422108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.266072981134319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008567095585928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.19222761970854,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.19222761970854,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.52236,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002293855743544,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002293855743544,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002293855743544,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002121816562778,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000172039180766,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.92128106311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.7470079942983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.067345116265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1106150364079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.337339577011424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015016287095902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.358778094753904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009460260870418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.10171507881432,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.10171507881432,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.346789,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001510240427427,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001510240427427,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001510240427427,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00139697239537,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000113268032057,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,96.3847973538888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.2604807350726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.204037221583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2841028630957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.208361522465725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008413267853635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.221789431648281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00530035874779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.832755031228314,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.832755031228314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.167832,Mm²,,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00059839715049,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00059839715049,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00059839715049,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000553517364203,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.4879786286732E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.8483136446678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.0958548982818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.75400817025139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.3407293269013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9203885859176,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.32379282729467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.077115049394798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003708391519288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.082163377227644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002336286657152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.237930008922375,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.237930008922375,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.034824,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000781758957655,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000781758957655,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000409798045603,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000371960912052,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000723127035831,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,5.86319218241042E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,188.643675510975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.5398148243828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,198.075859286523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4700833393612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.38,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001794822511444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053620021728513,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00113073818221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.168533756320016,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.168533756320016,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.063844,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000553745928339,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000553745928339,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000290273615635,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000263472312704,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000512214983713,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,4.15309446254072E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.190499310648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.800024276181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.38,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001927297506337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.031530078473785,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001214197428992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.109051254089422,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.109051254089422,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.055138,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000358306188925,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000358306188925,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000187824104235,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000170482084691,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000331433224756,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,2.68729641693811E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,143.575942745895,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.0744734179102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,150.75473988319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.6869182532835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.38,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001547970315317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.019415415876386,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00097522129865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.733617527510657,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.733617527510657,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.146551,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002410423452769,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002410423452769,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001263543973941,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001146879478827,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002229641693811,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000180781758958,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,134.961386181141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.3552181520893,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.709455490198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8637874358163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.38,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004155485575407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.123977018541855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002617955912506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.981461286804798,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.981461286804798,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.182826,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003224755700326,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003224755700326,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001690416938111,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001534338762215,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002982899022801,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000241856677524,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,140.099893605731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,25.0943680645991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.104888286018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.8094518806974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.154559183572744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004587902935778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.17115655484227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00289037884954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.574997521562407,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.574997521562407,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.123335,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001889250814332,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001889250814332,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000990345276873,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000898905537459,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001747557003257,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000141693811075,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,137.447516979215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.8335179771088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.319892828175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.7551163255785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.089024714732889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002692836939707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.098672171694498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001696487272015,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.237930008922375,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.237930008922375,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.036288,Mm²,,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000781758957655,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000781758957655,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000409798045603,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000371960912052,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000723127035831,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.86319218241042E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.795140352698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,11.6921751344457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,17.378741212276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.534897370333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.36607033470079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2846237032733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.036206732998507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000424285651279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040167230155314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000267299960306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.426291265985922,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.426291265985922,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.10157,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000714285714286,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000714285714286,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000341642857143,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000372642857143,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000660714285714,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,5.35714285714286E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,167.63624809868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.5398148243828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,6.70170451573057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.018060503615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4700833393612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.521676089697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.074318746529391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005234898991713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.079520260469043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003297986364779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.505601268960048,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.505601268960048,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.113178,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000847176079734,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000847176079734,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000405204318937,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000441971760797,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000783637873754,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,6.35382059800665E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,195.716679848351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.6418877066509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,205.502513840769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5677636994419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.103323951078667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003416572852142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.11076221031576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00215244089685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.38663626449886,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.38663626449886,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.095766,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000647840531561,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000647840531561,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000309862126246,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000337978405316,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000599252491694,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,4.85880398671096E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,170.628673010648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.2819776509386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.6418877066509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.16010666118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4476459200913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5677636994419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.069312499930352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00280421787172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.074515583861051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001766657259183,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.43749380390602,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.43749380390602,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.249572,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002408637873754,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002408637873754,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001152051495017,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001256586378738,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002227990033223,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000180647840532,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.540666172944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.4283875391933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.6418877066509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.817699481591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5398841496918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5677636994419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.221636465872323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007344501534932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.239178072382768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004627035967007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.91335382175077,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.91335382175077,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.31922,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003205980066445,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003205980066445,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001533420265781,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001672559800664,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002965531561462,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000240448504983,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,156.119946164747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.574797427448,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.6418877066509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.925943472984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6321223792923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5677636994419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.315247684516504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00944086683479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.339608262955073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005947746105918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.17973629424011,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.17973629424011,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.211846,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001976744186047,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001976744186047,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000945476744186,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00103126744186,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001828488372093,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000148255813953,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,147.20312445737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.772594019135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.6418877066509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.563280680239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.346734232055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5677636994419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.183856017126187,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004824282952578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.198350295243204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003039298260124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.118965004461188,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.118965004461188,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.058968,Mm²,,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000199335548173,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000199335548173,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.53421926910299E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000103993355482,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00018438538206,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.49501661129568E-05,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.84,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,138.286302749993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.4847399510784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,8.6418877066509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.200617887493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.5353861691794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5677636994419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017479312833149,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001266912145435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018887881223785,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000798154651624,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.024,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.426291265985922,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.426291265985922,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.10157,Mm²,,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001439330543933,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001439330543933,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000575732217573,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00086359832636,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001331380753138,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000107949790795,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,167.63624809868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.5398148243828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,6.70170451573057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.018060503615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.4700833393612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.521676089697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.074318746529391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005234898991713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.079520260469043,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003297986364779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.54525627044711,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.54525627044711,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.118982,Mm²,,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0018410041841,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.0018410041841,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00073640167364,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00110460251046,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001702928870293,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000138075313808,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,159.762241133353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.8637103250464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.750353190021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.7441375047792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.090580670482347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004862045981895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.096913743502789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003063088968594,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.416377515614157,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.416377515614157,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.100119,Mm²,,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001405857740586,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001405857740586,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000562343096234,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000843514644351,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001300418410042,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000105439330544,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.888234168026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.1876058257099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.482645876427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0181916701973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.065892134364731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003022352907664,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.070564371243798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001904082331828,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.53663130762367,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.53663130762367,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.264082,Mm²,,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005188284518828,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.005188284518828,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002075313807531,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003112970711297,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.004799163179916,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000389121338912,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.545863907371,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.7157466995664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.52315710274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.8709204207269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.19347505430742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009167803819915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.208232918330617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005775716406546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.04223257658372,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.04223257658372,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.338083,Mm²,,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00689539748954,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00689539748954,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002758158995816,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004137238493724,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.006378242677824,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000517154811715,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.51058733442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.1043765675491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.586116701141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7457572375559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.261147010492042,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012206275943087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.280961308948336,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007689953844145,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.25904629721424,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.25904629721424,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.223454,Mm²,,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004251046025105,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004251046025105,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001700418410042,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002550627615063,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.003932217573222,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000318828451883,1e6 dimensionless,Own calculations,,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,115.472841110527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.1459911966295,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36270853127044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.246483166054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8819744538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.98945239409459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.153396597645567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007406604316852,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.165232118728451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Ireland,ie,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004666160719617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,2546.96580526217,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,31.96,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,12.19,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,23.36276,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.57028,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.02696,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,17.3226344936709,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,405.605899631273,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,260.906054052872,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,34.57366,Mm²,,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.08965001627932,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.94126513449452,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.72053416190018,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.727819952327943,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.641295902051195,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,5.96734953659651,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,1.40465137454909,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.293876635164079,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.28688445992101,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.97150172313729,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.52658361709886,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.34585175883268,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.81703286544121,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.18296713455879,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.731868538235158,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.268131461764842,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.731868538235158,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.268131461764842,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.765179707306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.2117529952048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.6972008811844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.691407838661,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.821673552633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.6215011014805,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,41.8558218745257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.73600407606019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,46.6938661628667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.65337028203973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,386.500843697269,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,248.619592581714,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,27.891644,Mm²,,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.84991472560944,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.84982667412951,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.5452876644205,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.69353780576215,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.61108925542679,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,5.25593101873911,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,1.30144062133178,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.263574767806348,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.37118394670461,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.48752668003363,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.35968566069465,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.06512127288015,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.784716383157623,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.215283616842378,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.215283616842378,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.784716383157623,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.784716383157623,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.215283616842378,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.974709800943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.5151349381479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.8453681673238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.181580366183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.2058145150921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.8067102091547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,43.7138048255163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.35316687230678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,48.6662348971822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.28875612918498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,394.744078495094,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,253.920816880195,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,28.486513,Mm²,,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.95335301425634,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.88927951325985,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.62090105342139,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.708329481038657,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.624122479796299,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,5.33169052462429,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,1.29110692905624,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.265316943748242,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.1673778952868,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,4.05301014834634,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,1.20245911372164,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.29246077608727,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.74796953912892,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.25203046087108,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.206909108180422,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.793090891819578,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.793090891819578,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.206909108180422,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.534018965892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.0299593090623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.7796795194496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.11438336282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.6961332459509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.724599399312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,42.730661809469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.39669257324707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,47.6231352381157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.33021000676051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,369.051934254109,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,237.398198918818,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,26.632452,Mm²,,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.6309611987693,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.76631467499993,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.38523263630036,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.66222745142401,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.583501111044932,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,4.59986164551717,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,1.19317642150896,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.234699752007306,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.785610648242227,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.52003657793131,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.909967486283276,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.90085856533225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.920112781954887,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.079887218045113,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.079887218045113,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.159774436090226,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.920112781954887,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.199959357854095,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.800040642145905,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.159774436090226,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete + bricks,,0,0.840225563909774,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.840225563909774,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.840225563909774,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.159774436090226,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.159774436090226,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.26415806898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.5047174677118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.9940949143103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.064000178388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.1006929162487,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.9926186428879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,37.8285395132008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.3450644637324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,42.2371174290285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.28103939525873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,344.484719705018,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,221.599023242297,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,24.859571,Mm²,,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.32268529833643,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.64873384814521,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.15988295308393,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.618143997662109,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.54465834759039,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,3.84588451089666,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,1.07102228301504,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.201652496002891,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.92958219190508,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.951234556702527,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.048765443297473,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.048765443297473,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.097530886594946,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.951234556702527,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.902469113405054,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.097530886594946,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.857096206527458,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.097530886594946,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.902469113405054,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.902469113405054,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.902469113405054,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.097530886594946,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.097530886594946,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.8151941413755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.6796866168359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.2290350376621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.135433488079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.3625335338745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2862937970776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,28.8659439680788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.21015612570898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,32.4518492466635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.15255269412523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,338.991313042935,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,218.066213417911,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,24.463142,Mm²,,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.25375257982193,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.62244192578314,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.10949313584983,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.608286618914536,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.535972825057563,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.74765238258442,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,1.06265081954837,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.197871598872609,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.56322517606283,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,0.462580288337451,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.953025330924376,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.046974669075624,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.046974669075624,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.093949338151248,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.953025330924376,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.906050661848752,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.093949338151248,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.870985583127466,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.093949338151248,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete + bricks,,0,0.906050661848752,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.906050661848752,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.906050661848752,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.093949338151248,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.093949338151248,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.8954759374657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.8404775995839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.2862279142387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.9594750114003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.8488708658437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3577848927984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,25.1716237979127,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.02354954486644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,28.4312570868872,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.974828586530798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,307.587016436473,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,197.870110270296,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,23.132692,Mm²,,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.85968316692723,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.47213822918783,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.82142839502381,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.551934692870594,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.486320079032832,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.38155993806858,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.966406458339412,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.179090051810788,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.303686531189016,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.908405659885984,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.091594340114016,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,0.045797170057008,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.091594340114016,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.954202829942992,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.091594340114016,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete + bricks,,0,0.908405659885984,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.908405659885984,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.908405659885984,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.091594340114016,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.091594340114016,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.3484819999288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.925918179743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.3114698566659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,86.0296241843228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.0254444743873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3893373208324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.9482372957577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.923593968069196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,24.8221217396781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.879630895189103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.68,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of buildings [Mil.],,0,2.90639573878706,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.88308,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.95524,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.84168,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,6.4,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,110.349353165427,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,70.9859690206862,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,13.266616,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.89199668071842,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.1,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.38304957360516,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.270555525342733,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.23839158177052,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.81269143062842,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.018919966807184,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.060385283282809,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.655,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.73666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.845,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.75,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.3489721184,kWh/m²/year,H. Mahlknecht, S. Avesani, M. Benedikter, and G. Felderer, Refurbishment and monitoring of an historical building. A case Study. 2009 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.7058278348788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.755755570769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.6730304299386,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.3125143648503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.566561818847448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.6439231093525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.53959347627031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,91.244297231423,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,58.6995075495282,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,6.5846,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.45907181112503,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.54,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.0665814939324,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.20864726899088,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.183843048201754,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.39791311245512,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.01459071811125,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.046567980558661,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,1.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,205.998694135363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.0231696918156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.343784181561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.9276668144852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.6157773529382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.289874963152729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.0148644598888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.276076914906659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,99.4875320292482,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,64.0007318480095,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,7.179469,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.57408924489853,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.58,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.15065923802082,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.225094762020489,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.198335244857214,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.5081094561902,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.015740892448985,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.050238896259336,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,2.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,185.828793853582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.8435321658697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.475578296054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.7565800347743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.5545940810885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.314773280035364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.9713535554813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.299790071905681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,73.7953877882632,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,47.4781138866321,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,5.325408,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.10208980460463,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.41,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.805627647165984,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.157598842058462,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.138863315380183,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.0558944235733,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.011020898046046,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035174482985285,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,165.948760402198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.0590616525361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.921646028063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.8666503178754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.11129745870037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.245283295396909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.0827945420149,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.233607810536016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,49.2281732391726,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,31.6789382101119,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.552527,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.684486724193307,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.500359795385307,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.097881601559643,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.086245327248357,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.655795663897779,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006844867241933,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021846193053595,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.353073064595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.8435677103383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.244601816634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.8518138873262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.91986538494635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.148650404067305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.47042179530708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.141574644833701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,43.7347665770889,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,28.1461283857259,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.156098,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.605700576925769,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.442767121732737,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.086615182500385,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.076318272692647,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.580311929988761,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006057005769258,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019331641167751,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,118.652155909112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.8196160402122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.642667436659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.8290023166981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.06995776198997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.131986806545282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.53374171921562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.125704234553726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,37.797637647647,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,24.3279607712018,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.727648,Mm²,,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.522117779274327,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.381668096649533,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.074662842436229,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.065786840188565,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.500232602897559,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005221177792743,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016663998584025,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.951238753628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.7956643700861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,16.699733545887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.040733056683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.80619074607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.8746669323587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.25744397898059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.114003860327737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.6263754591603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.108577276576136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,15.1835332902121,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,9.28360426121294,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,11.0991628351451,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.17124526050033,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.91312519456673,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,10.9226344936709,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,186.500843697269,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,119.958992581714,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,13.458742,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.19765333556091,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.8,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.33748458829502,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.45726442698521,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.402904320280674,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,2.3003077053425,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.767436800534618,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.129908829683789,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.43333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.16666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.75,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.25,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.193402918662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.0170218241751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.566287444414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.4934115853444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.6606333564291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.713542418339942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.8755733467029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.679577799226961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,212.049246922067,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,136.389170695582,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,15.30243,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.39084291448441,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.9,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.4787061704881,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.484890536771271,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.427246207225036,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.43928320717302,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.813802299476258,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.137757407835133,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,126.11622679183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.903304707779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.735213087703,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.5279074036887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.6152177055938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.763641827059459,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,24.1671149706656,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.727292476091429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,213.580401224923,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,137.373856027748,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,15.412925,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.37926376935782,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.82,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.47024181540056,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.483234719018168,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.425787234939085,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,2.43095347472211,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.811023304645876,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.137286989989833,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.260957382683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.7775406673825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.471129994305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.3605297316151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.1042901915259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.782630425990817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.6184521964558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.745377217713654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,236.291481782389,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,151.979351934254,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,17.051859,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.52887139416467,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.9,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.57960498913438,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.504628609365548,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.444637795664749,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,2.53857726504797,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.846929134599521,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.143364994517181,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.845400462709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.6158491217969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.85218318167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.1589347035993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,22.9810392088335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.880146181390154,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,25.7316116279439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.838251223155983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,261.658646334604,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,168.292975457784,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,18.882468,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.63819857414312,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.88,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.65952315769862,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.520262396102466,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.458413020342033,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,2.61722436281527,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.873167657794349,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.147806553533502,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,93.7236084949822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.8194738623376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.61513633026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.4480669064903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.2200975512836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.940714620982426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.909954403346,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.895936605023663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,263.40853696644,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,169.418330123117,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,19.008748,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.64805200289616,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.91,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.66672601411709,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.521671436414151,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.459654552364916,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.62431266029661,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.875532480695078,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.14820686190447,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.7471555911449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.8435677103383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.3776660919193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.8518138873262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.8247125155626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.795393834026759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,21.318917760809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.757533087527085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,241.616148990688,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,155.403645415912,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,18.361112,Mm²,,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.33756538765291,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.92,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.43976029837427,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.477271850434365,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.420533238844266,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.40095675566898,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.801015693036697,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.135592938947228,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.3412203339818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.6639657288611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.6849510861031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.7759609601673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,16.738138688286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.72827451711178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.9814371722781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.693608650097259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-140.89,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,10.0964667097879,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,7.26736550632911,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,108.755702768577,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,69.9610924504719,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,7.848302,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.57622753003035,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.51,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.88322232445218,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.36840053679434,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.324604668783824,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.85435040062558,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.618294607207284,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.103582522197481,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.09666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.16666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.47333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,1.14666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.193402918662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,53.0170218241751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.566287444414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.4934115853444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.8827642900946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.416093598416717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.1744674331823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.396287543132081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,83.2072995437785,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,53.530914336604,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,6.004614,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.97103168226779,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.4,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.44082415973775,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.281857530564294,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.248349991965741,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.41873469911097,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.473047603744269,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.079249379412554,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,126.11622679183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.903304707779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.735213087703,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.5279074036887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.48328289945612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.299650082094596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.48476843685375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.285386738186893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,81.6761452409224,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,52.5462290044372,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.894119,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.93476138317243,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.33,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.41431057109905,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.276670877793657,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.243779934279726,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.39262759371197,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.464342731961383,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.077791057499073,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,121.260957382683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.7775406673825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.471129994305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.3605297316151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.07209723448462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.299288867220892,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.03367610234895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.285042717141178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,58.9650646834573,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,37.9407330979314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,4.255185,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.39677662026413,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.34,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.02104370941308,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.19973905669777,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.17599385415328,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.0053899568959,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.33522638886339,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.05616027450484,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.76,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,118.845400462709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.6158491217969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.85218318167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.1589347035993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.73658544153551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.219634986945333,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.42312606951034,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.209180361566735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,33.5979001312418,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,21.6271095744016,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.424576,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.795873991578161,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.581783887843635,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.113809980795677,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.100280122938848,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.572864484183608,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.191009757978759,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.031999749415795,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.7236084949822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.8194738623376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.61513633026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.4480669064903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.7263942324138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.120791100659251,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.07192104006291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.115041444267871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,31.8480094994063,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,20.5017549090682,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.298296,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.754422221183465,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.551482643685113,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.107882377629235,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.095057199869117,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.543027792299045,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.181061333084032,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.030333095800389,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,78.7471555911449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.8435677103383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.3776660919193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.8518138873262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.27745005915747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0961689042944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.57913595422673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.091591264449986,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,28.1732297981376,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,18.1385040831823,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.043932,Mm²,,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.667373281291548,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.487849868624121,1e6 dimensionless,P. Melograno, S. Pezzutto. Italian country report. IEA. 2010,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.095434379224691,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.084089033442735,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.480370579502042,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.160169587509971,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026833114279535,1e6 dimensionless,Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.3412203339818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.6639657288611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.8174760640509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.6849510861031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.7759609601673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0218450800636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.9530725696296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.081070448800123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.214762240022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.077211495437237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,2.251,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,123.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,123.93,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,79.976388,Mm²,,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.883896232176867,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.633784146673937,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.410473921868159,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.470704369809642,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.805709833811476,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.078186398365391,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.32377393695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.9625095145121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.939962633798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.30988518052795,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,19.4924891081397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.25969711515749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.3936136396294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.38647581721457,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,69.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,69.7,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,45.464416,Mm²,,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.410675401204881,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.356449245728826,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.191134050732352,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.216420077626576,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.374535364278434,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.036140036926447,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-5.55111512312578E-17,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,0,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,159.018644764887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,113.353397363597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36292942008834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,166.969577003131,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.4748929190749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.73833447949452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.4573957206928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,5.15354601275189,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.951941430339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.11295386522827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,50.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,50.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,33.022796,Mm²,,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.303099340695433,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.256469579243911,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.140540698245813,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.160632096809934,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.27439070251787,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.028708638177563,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,0,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,0,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.098104213796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.357438118218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.3045280639837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.303009424486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.8865496284694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.67584502846256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.48954200873067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.77640235006054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.73353955081538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.54832496352482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,55.87,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,55.87,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,36.663004,Mm²,,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.337993254861657,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.285721942021083,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.156633206116029,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.179254870259988,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.305701725304396,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.032291529557261,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-6.93889390390723E-17,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,0,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,0,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,114.91472654829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.58335488814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.30772812247058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.660462875705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.7991755041374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.67926909104352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.71682854245541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.2742960065973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.97280082498223,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.75246136270489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,42.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,42.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,27.950688,Mm²,,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.295584050278112,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.21571060523446,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.13498326243987,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.159742197707694,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.268380754399162,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.02720329587895,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,0,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.083084314761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,112.344981889003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.4523465475662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.887238530499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.0614425744911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.97401080589583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.21072447377294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.14011953714517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.39174749700912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.28744901022952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,56.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,56.17,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,36.853924,Mm²,,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.422353098664789,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.287256156852054,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.192518957746148,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.228710482694099,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.38471017695398,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.037642921710809,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.035559855579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,118.411982914817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.0488474990366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.687337848358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.548912995075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.54226682396917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.74514116110878,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.36394621903197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.0045168944446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.78921794980311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,42.16,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,42.16,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,28.020692,Mm²,,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.336453042834219,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.215608324245729,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.154309992724349,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.180927194287416,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.307319601998157,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.029133440836062,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,8.32667268468867E-17,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.640435574521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,91.538360670455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.02990088420105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.822457353247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.5307278748866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.38199394609512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.58154138509974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.56496821053173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.72905966678028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.09163696631801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.4,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,16.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.72,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,10.825164,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.209806978521643,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.014278394534586,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.102469728309971,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.107337250211673,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.188091956244653,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.02171502227699,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,189.618903275897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.099848439692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.25228131246982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.12798717218771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.33073244308725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.458374740596959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.50486,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.104903489260822,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.007139197267293,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.051234864154985,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.053668625105836,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.094045978122327,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.010857511138495,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,399.255262161538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,96.047327332368,kWh/m²/year,S. Pezzutto, F. Haas, D. Exner. Europe´s Building Stock and its energy demand: a Comparison between Austria and Italy. 2017,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,419.218025269615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.3794042062709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.37870061651886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.528727090338859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.46265417984177,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.216778107038932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.64106,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.048436300065403,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003296327924851,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023656288951943,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02478001111346,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.043423143008634,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005013157056769,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,366.439761161959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,96.5275639690298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,384.761749220057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.5763012273022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.43335422113718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.254935088096046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.41959986705508,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.104523386119379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.94,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.691972,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.049440161206655,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00336464560205,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02414657473333,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.025293586473325,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.044323104521766,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.005117056684889,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,317.216509662592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.0078006056917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,333.077335145721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.7731982483336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.26912143346567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.261142283012105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.24716327284686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.107068336034963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.65,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.65,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.507416,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.045801164569617,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003116994022203,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022369288775801,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023431875793816,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.041060744036662,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.004740420532955,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,292.604883912908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.486552508781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,307.235128108553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.4094865286002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08587650818363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.204320685545358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.05472770723084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.083771481073597,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.29,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.29,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.551112,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.066380317965281,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004517506404782,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.032420147294243,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033960170671038,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.059509955055874,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006870362909407,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,276.197133413119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.1527627829907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,290.006990083774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.4026327410262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.48698018568938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.263324765751832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.47604714197253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.107963153958251,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.02,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.379284,Mm²,,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.062992286613556,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004286934244236,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.030765432782061,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.032226853831495,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.056472584949053,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006519701664503,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,243.354286162707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,24.3920778503902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.89552928808686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.522000470842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.00075191866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.23821633825294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.24621407356299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.082427758406578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.22321628838166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.073795380946697,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,1.54,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,48.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,48.54,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,31.075412,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.609092747454579,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.448527541101644,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.271046272617288,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.338046474837291,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.563410791395486,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.045681956059094,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,162.518768700412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.644707135433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.0217332680385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.2093658799486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.42548137614684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.31584001077893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,22.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,22.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,14.38264,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.279951775766618,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.206152646105844,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.124578540216145,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.155373235550473,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.258955392584122,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.020996383182496,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.139004664699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,129.095870070387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.795954897934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.9293067288587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.47769397878309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.85673942470915,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.65280193341651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.761263164130752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,16.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,16.27,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,10.538784,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.204160259602101,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.150340813632545,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.090851315522935,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.113308944079166,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.188848240131944,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.015312019470158,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.682728615142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,130.386828771091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.616865045899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.4585997961473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.97557214101798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.37411862486351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.07524283099787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.56338863619404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,18.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,18.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,11.735216,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.227750996421521,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.16771270850834,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.101349193407577,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.126401803013944,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.210669671689906,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.017081324731614,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.682728615142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,140.817775072778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.616865045899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.7352877798391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.20384968404894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.65252700711847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.31503733144507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.677536072918572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,16.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,16.64,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,10.774252,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.208803117380391,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.153759750390016,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.092917387234274,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.115885730146117,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.193142883576862,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.015660233803529,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,115.674641023514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,151.248721374466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.45837307469,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.0119757635309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.97044452674938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.62959183876628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.06987912308921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.668132653894174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,24.8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,24.8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,15.967276,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.311196953788083,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.229161166446658,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.138482644435697,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.172714309352386,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.287857182253977,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.023339771534106,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.77555756156289E-17,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,110.834354626076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,152.76120858821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,116.37607235738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.6320955211662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.81668110547964,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.43918037962152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.95887494296868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.00006395564482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,19.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,19.95,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,12.963468,Mm²,,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.250337872099688,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.184345373814953,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.111400353084361,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.138937519015327,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.231562531692211,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.018775340407477,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,100.524818062042,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.74149640132864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.551058965144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.93340114942165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.06016297354424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.3388241444717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.16426497928559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.548917899233396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.061,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,22.71,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,22.71,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,14.6372,Mm²,,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01808498694517,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01808498694517,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013722888093995,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.015082879112272,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.003002107832898,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.734977854103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.471726746808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.17545591600442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.51168165551542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.33654120318339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.61978947876132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,16.25,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,16.25,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,10.526056,Mm²,,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012940600522193,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.012940600522193,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00981932767624,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.010792460835509,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002148139686684,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,126.066216340047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,112.571598701378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.36952715705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.1543554675648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.13131046049443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.18493495194023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.23953067241853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.485823330295493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,10.03,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.03,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,6.567648,Mm²,,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007987336814621,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.007987336814621,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006060791174935,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.006661438903394,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001325897911227,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.2588029320968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,113.134456694884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.071743078702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.3851272449026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.01654203851882,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.743027288243245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.06839046534696,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.30464118817973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,10.96,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,10.96,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,7.1595,Mm²,,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008727937336815,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.008727937336815,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006622758851175,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.007279099738903,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001448837597911,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,88.0549276822022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,113.697314688391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.4576740663123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.6158990222404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.02088320843427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.814015924511538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.07304339287672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.33374652904973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.029264,Mm²,,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003559660574413,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003559660574413,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002701070443864,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00296875691906,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000590903655352,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.8510524323075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,82.9990397225257,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.8436050539229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.0296062862355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.379692540926873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.251426003066017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.399132334704306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.103084661257067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.85,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.907496,Mm²,,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00465861618799,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00465861618799,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003534957963446,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.003885285900783,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000773330287206,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.2842285431995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,94.6189052836793,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.0484399703595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.7937511663085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.470197137166438,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.369722993920355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.494302682028534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.151586427507346,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,6.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,6.33,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,4.212968,Mm²,,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005040861618799,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005040861618799,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003825005796345,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004204078590078,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000836783028721,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.7167644408481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.09135045961034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.9026026628906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.44774499178306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.435555367319902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.435101415630959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.457977700654084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.178391580408693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.045,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,5.16,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.16,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.46838,Mm²,,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007473447055037,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.007473447055037,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002914644351464,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004558802703573,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.006232854843901,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001240592211136,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,163.995466245393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.195239557663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.975552573194054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.358202827067783,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.02691692120111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.146863159097791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.02,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.742884,Mm²,,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005822336659157,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005822336659157,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002270711297071,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003551625362086,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.004855828773737,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00096650788542,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.253916406686,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,96.047327332368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.66661222702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.3794042062709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.616342485973996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.263446677382715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.649174845113078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.108013137726913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.23,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.23,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.603728,Mm²,,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003229803669134,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003229803669134,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001259623430962,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001970180238172,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002693656260058,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000536147409076,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,113.213478448546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.0078006056917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.874152370973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.7731982483336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.308361252139917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.155574126049765,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.324897218650906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.063785391680404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.42,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.42,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.724644,Mm²,,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003504988735114,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003504988735114,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001366945606695,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00213804312842,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002923160605085,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000581828130029,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.1730404904055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,85.8519035360371,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.081692514926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.1992804497752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.298236324077893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.148063970322005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.31436129160361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.060706227832022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.75,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,4.480256,Mm²,,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009776311554554,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.009776311554554,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003812761506276,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005963550048278,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.008153443836498,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001622867718056,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.0711028654582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.6960064663826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.7746580087311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.6253626512169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.804169436538125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.334657231147049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.847761698208957,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.13720946477029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.27,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.447584,Mm²,,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011977792082395,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.011977792082395,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004671338912134,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007306453170261,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.009989478596717,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001988313485678,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.4222402238513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.4064873070123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.8933522350438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.606659795875,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.946810385979139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.459811429749883,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.998296674464654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.188522686197452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.22,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.597364,Mm²,,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003215320244609,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003215320244609,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001253974895397,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001961345349211,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002681577084004,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000533743160605,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,80.5620549539651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,77.8800176170081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0651099550047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.5901577016633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.9308072229733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.8196676518551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.234492306097913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.124402736460774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.247329812284811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.051005121948918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.197,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,8.04,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.04,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.301212,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.037049824561404,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.037049824561404,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017720931087719,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019328893473684,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.030899553684211,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.006150270877193,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,193.447378392515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.119747312141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.60569779328538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.547491660454061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.68699030036984,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.224471580786165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.13,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.13,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.903688,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005207251461988,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005207251461988,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002490628374269,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002716623087719,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.004342847719298,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00086440374269,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.857454564742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,100.17839517462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.350327292979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.0731420215943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.176419817220447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.090530013578562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.185382425952715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037117305567211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.47304,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.038294035087719,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.038294035087719,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018316036982456,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019977998105263,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.031937225263158,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.006356809824561,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.393090923556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,101.180179126367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.012745469734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.4838734418103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.986059351506274,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.553763167565769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.03640377440022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.227042898701965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,10.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,10.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.74584,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.047510409356725,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.047510409356725,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022724228795322,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024786180561404,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.039623681403509,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.007886727953216,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,110.615584619412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,89.5444585268344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,116.146363850383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.7132279960021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.20505199833517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.604052590108661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.26659670467011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.247661561944551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.89,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.89,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.932952,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027142222222222,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.027142222222222,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012982124888889,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014160097333333,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.022636613333333,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.004505608888889,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.838078315269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,77.9087379273023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.279982231032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.9425825501939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.677964655685676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.306411326648659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.712601055958135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.12562864392595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.97,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.983864,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027510877192983,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.027510877192983,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013158452561404,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014352424631579,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.022944071578947,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.004566805614035,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.591321844528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.0368738578516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.670887936755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.0951182817191,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.643909868019678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.350726932434836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.676853554952819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.143798042298283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.157396,Mm²,,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014285380116959,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.014285380116959,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006832697309942,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007452682807018,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.011914007017544,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002371373099415,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.2270927788281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,81.1754831002594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.26627748875119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.7884474177695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.2819480711063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70491691296377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.302229447829496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.175127662538567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.317729429425273,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.071802341640813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,22.76,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,22.76,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,14.66902,Mm²,,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002388247639035,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002388247639035,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000955299055614,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001432948583421,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001991798530955,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.00039644910808,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,103.560251904503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.27669605631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.60179753080165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.738264499728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,42.343445383087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.92392335795777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.46176824514753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.51496791998393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.58695139564093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.62113684719341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,17.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,17.63,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,11.404288,Mm²,,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001849947534103,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001849947534103,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000739979013641,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001109968520462,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001542856243442,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000307091290661,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.5160902571705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,107.149572158421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.60179753080165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.0418947700291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.9313245849527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.92392335795777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.67692836170195,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.22196457997142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.76239737359641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.501005477788281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,9.45,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,9.45,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,6.198536,Mm²,,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000991605456453,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000991605456453,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000396642182581,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000594963273872,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000826998950682,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000164606505771,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,0.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.8429648406795,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,111.022448260533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.60179753080165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.6851130827135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.5192037868185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.92392335795777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.769653004410497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.688176642351051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.809005394364343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.282152423363931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,10.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,10.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.605832,Mm²,,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001058761804827,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001058761804827,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000423504721931,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000635257082896,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000883007345226,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000175754459601,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.7248520324762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,118.768200464756,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.60179753080165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.0610946341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.69496219055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.92392335795777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.719685894093473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.784562779212501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.756598831539863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.321670739477125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.78,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.226548,Mm²,,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000501573976915,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000501573976915,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000200629590766,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000300944386149,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000418312696747,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,8.32612801678909E-05,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,56.6067392242728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,123.518928483346,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.60179753080165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,59.4370761854865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.642760678172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.92392335795777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.292576805689256,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.398539751660084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.307645577817663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.163401298180635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.99,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.99,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.996592,Mm²,,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000628541448059,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000628541448059,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000251416579224,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000377124868835,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000524203567681,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000104337880378,1e6 dimensionless,Own calculations,,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,58.9311705450763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,115.745009907471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.60179753080165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.8777290723301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.4554540620633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.92392335795777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.380562478774509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.462585580636121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.400141898057424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Italy,it,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.18966008806081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,60.7002602968685,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.04,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.39,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.84136,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.09048,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.10816,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.651643835616438,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,0.388356164383562,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,14.6972860125261,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.1506536534447,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.30429,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.251814034705477,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.094430263014554,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.203717554076731,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021907821019377,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02618865960937,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.171691986038583,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.030798801081522,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.058516001706354,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.03948863636364,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,259.87500628359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,16.1382049821709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.687328632004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,320.243970243268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.6779892216223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,53.443848470738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.90111393269972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004910694394025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.9968970638578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002032045340247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.13361169102296,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.20164321503131,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.165963,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.139356176024508,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.052258566009191,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.112739146403827,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012123987314132,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014493042306549,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.099045992831155,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.020263463112161,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.052414807719063,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.993634496919918,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.15636550308008,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,181.111324540439,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.2417686618983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.6835671834282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.183485231183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9968438722935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,58.49730441157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.78538313361194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006014792652435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.30626567640865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002488921199577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.01670146137787,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.11349290187891,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.147147,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.137353109839351,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.051507416189757,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.111118665860035,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011949720556024,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014284723423293,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.091207081195356,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.018328505478631,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.045790730941529,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.947135416666666,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,179.576186604943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.0209662401843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.7635358715199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.291734753271,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.7330758301883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,58.6321796009054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.75354900418956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005594671119344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.26548559905549,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002315074909185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.50104384133612,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.47868705636743,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.172431,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.145651526892145,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.054619322584555,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.117832085255746,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012671682839617,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015147758796783,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.09546439949417,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.02713164574078,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.049602077326314,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.923349705304519,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.986363178739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.2372203797927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.4465564210796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.08039534516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4431617931582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,58.0975620597929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.701090741223,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004351679147308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.20726635450367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001800724831156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,8.45093945720251,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,8.44090835073069,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.171549,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.144793069955649,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.054297401233369,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.11713759359412,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012596997086142,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015058479275388,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.094442479684502,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.019982087297627,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.054915155879113,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.914199604743083,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,133.417488820294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.7261017120441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.4776624868173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.410371473248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.3006608884439,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,58.150025550266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.43540343381869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005099483022599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.87919522287535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002110166074752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,9.25260960334029,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,9.04536764091858,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.185661,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.158528380939585,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.059448142852344,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.128249460180124,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013791969141744,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016486951617717,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.114369636406141,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.021761284040219,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.04828674091143,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.406755293551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7546720205556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,34.6271943893425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.751144548242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.7952832821059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,58.402226057065,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.36406770593742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006638248162008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.80447347835006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002746907089439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,3.64806823006263,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.81954344546722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.11684385707085,Mm²,,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.062503701643284,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.023438888116232,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050565494629417,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005437822042966,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006500384970902,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.042048651996605,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.008432183752136,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.020978348591395,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.821922829655679,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.1749737309834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.6787380734415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.181469263904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.981020128691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6948618147901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.3370660605005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.619372951462651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003584622086567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.94953894814761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001483316619422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.31,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.25079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02697,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03224,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.31,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,8.89352818371608,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,7.39532025052192,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.17934,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.155816386178316,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.126055456418257,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013556025597514,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016204904162545,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.11,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.018386333569041,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.027430052609274,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,308.691539763023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,11.5918140204033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.21,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,380.400584449973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.79669264164289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.265586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.54855275342062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002078875926419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.25132902307155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000860238858352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.03549060542797,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.47035991649269,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.041013,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.020641038070632,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016698599799141,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001795770312145,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002146667959346,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002435642492335,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008205395578297,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,289.81994072969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.9743312563069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,357.145112961197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.3343782738598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.24872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.462275949527721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001024272247815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.576128445358752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000423843856146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.918580375782881,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.38220960334029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.022197,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.017090975658128,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013826599307426,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001486914882257,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001777461468445,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.002016735127659,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005074240530469,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,296.090213652462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.5285974303414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,364.871970283929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.2189336166753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.24872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.441981283738372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000655446277161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.549568449040566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000271223669489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.40292275574113,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.74740375782881,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.047481,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027014684080079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021854879420784,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002350277514967,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002809527144328,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007014684080079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.915,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,273.021802158807,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.4748000666403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,336.444766800298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5414722675758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.24872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.523944667529134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001209568981964,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.656996999787801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000500519644737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.35281837160752,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.70962505219207,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.046599,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025826366412747,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020893530427912,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002246893877909,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002685942106926,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.003047511236704,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012778855176043,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.91,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,198.810559977182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.7648649646677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,244.994253059881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.83390112237949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.24872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.385293810428263,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001107418942489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.485472885868411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000458249958402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.26096033402923,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.64036409185804,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.044982,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023972254678394,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019393554034821,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00208558615702,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002493114486553,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002828726052051,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001143528626344,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.428824461966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.4572775914591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.605740384481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8446214673458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.24872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.291118447873336,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001504975260619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.368202038282997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000622758762844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.175365344467641,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.821825469728601,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.003087,Mm²,,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003289668507541,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002661341822601,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000286201160156,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000342125524784,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00038818088389,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000901487623651,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.982690765415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.6787380734415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.673269830221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6948618147901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,49.24872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.094832640800929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.47052644327138E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.261918012757941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.9189038422257E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.584527938775216,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.284439730780856,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.47288310246915,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.050853930673444,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.060790905632623,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.341643835616438,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.242884103158777,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,5.47925551148226,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.82095865565762,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0964527045825,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.095997648527162,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.077662097658474,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008351795421863,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009983755446825,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.05610853250522,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.011327722526205,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.028561393495737,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,185.069814692804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.1049767437283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,228.061532645943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.56083937655479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.09253721327817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002228537496248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.42738953776737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000922168815948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.95553429302714,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.18007285694246,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.10483675904373,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.118715137953877,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.096040546604686,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010328217001987,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012346374347203,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.069386409760465,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.014008386278558,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035320341914854,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,165.252655825772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.8854889422434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.640847774099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.6770153243003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.07324413425053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003971791875492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.41129236875859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001643527478079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.46367057202505,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,5.56320761130689,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.113781608997,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.120262134181223,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.09729206655261,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010462805673767,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012507261954847,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.070290595325833,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.014190931833384,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035780607022006,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,164.497900751735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.1199786743992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.710763096363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.1878471754664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.15038977605105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004451134117501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.5145501835239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001841879297822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,6.1610317543215,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.33501794275841,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.10845418222926,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.118636842812066,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.095977205834962,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01032140532465,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012338231652455,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.069340647957164,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.013999147451824,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035297047403079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,142.435829356796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.1902634534511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.52367251638,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4237310170381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.984412816446854,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002731989422984,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.30513818869685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001130497223231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.23162931983299,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.38824850715407,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.10969692882435,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.118966703542903,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.096244063166208,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010350103208233,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012372537168462,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.069533444362308,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.014038071018063,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035395188162532,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.915,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,120.95433878804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.8622433038971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.052031688502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7707962791526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.878752196875293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003385493307067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.1760706515638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001400917130464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.07776303031315,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.02623332485612,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.12459163206336,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.13455612626119,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.108855906145303,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011706382984724,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013993837131164,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.078645122041362,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.015877622898821,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.040033381321008,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.40745284378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.1171658123985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.35820413939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9452832131705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.904306337995998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00449989663407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.2212008342166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001862057227178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.15657620041754,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.06965845511482,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.108192,Mm²,,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.059214033135743,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.047904152806816,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00515162088281,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006158259446117,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.034609311310599,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.006987255910018,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017617465915126,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,97.9826907654156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.6787380734415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.744069830222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6948618147901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.418679838950822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003319194029642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.559553122951924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001373482489466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-3.1506774605,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.145472061224784,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.088356164383562,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.057115896841223,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.324502317327766,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.934274747265136,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0284972954175,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.009192754120981,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007436938083874,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000799769608525,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000956046428582,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.005583453533363,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001084744986276,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002524555601343,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,185.069814692804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.1049767437283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,228.061532645943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.56083937655479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.190320539745709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00065842934788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.232492461844577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000272458064153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,1.14258679256785,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.55111044159616,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.02011324095627,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03236808763787,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026185782899037,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002816023624495,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003366281114338,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.01965958307069,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.003819434341269,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008889070225911,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,165.252655825772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.8854889422434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.640847774099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.6770153243003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.302768124534074,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000761999967841,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.384249276844588,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000315315586693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,0.634450513569937,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.16797568723173,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.011168391003,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.017973207776165,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014540325090917,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001563669076526,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001869213608721,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.010916485869523,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.002120838517587,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004935883389054,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,164.497900751735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.1199786743992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.710763096363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.1878471754664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.220542087984706,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000436907217865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.274730891630279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000180792206752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,0.937089331273486,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.39616535578021,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.01649581777074,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.026546595669118,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021476195896317,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002309553823213,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002760845949588,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.016123751537006,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003132498288956,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007290345843156,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,142.435829356796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,25.1902634534511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.52367251638,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4237310170381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.238015201084124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000415533995525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.301141596409492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000171947967348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.866491765762004,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.34293479138455,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01525307117565,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024546652905593,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019858242200624,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002135558802787,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002552851902182,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.014909035322195,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00289650504286,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006741112540538,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.915,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.95433878804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.8622433038971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.052031688502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7707962791526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.19907997011156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000470743993755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.252023666917011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000194793864616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.913886238997912,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.37867022420443,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01608736793664,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025889280418206,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020944427858329,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002252367396384,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002692485163493,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015724514364779,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003054935089348,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007109830964079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.40745284378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.1171658123985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.35820413939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9452832131705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.186407360352366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000581030135253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.237171216612787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000240430269968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.316126685177453,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.9279595206238,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00556485707085,Mm²,,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.008955482696852,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007244985501753,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000779126994626,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000931370200473,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005439340686007,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001056746958229,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002459395052617,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,97.9826907654156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.6787380734415,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,35.4835228666577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.744069830222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6948618147901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.8465096669049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.10804125921436,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000170722792493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.130964687878258,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.06450915334982E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.028,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.03079333986288,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.03079333986288,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.494333876,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.026791179498876,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004907792034185,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012992494370992,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013687152969597,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.024048636137186,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.002742543361689,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,162.864928063829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.86960832335985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.353055763616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.86960832335985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.505337922407417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036721962522603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.658357003582078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011751028007233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.85994123408423,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.85994123408423,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.4116,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021973265957841,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004631129619518,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010663811202597,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011150210275036,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.019708623491726,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002264642466115,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.570145477353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.2886364726715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.71592863829993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.176890575332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.09236367125487,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.71592863829993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.449828928910583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035697439244823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.585981422236832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011423180558343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.90989226248776,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.90989226248776,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.069287,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.014956163558527,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003092706423993,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007279430747728,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007557533533967,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.013425256988485,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001530906570042,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.404470902509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.561479719507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.63143018326019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.719856882287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.17967351024224,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.63143018326019,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.292282083366553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027332557964833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.410739480683465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008746418548746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.19392752203722,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.19392752203722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.171628,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.016586387602439,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003552647379356,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008090968541225,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00837561732239,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.014833444747332,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001752942855107,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.055523142872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.4069732045651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.02155151150169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.162735317163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.49023142546084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02155151150169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.313900731856805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027424265201718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.408474831044279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00877576486455,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.11655239960823,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.11655239960823,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.719916,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011409152431519,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001808043755565,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005384469949457,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005994805568604,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.010330872142408,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001078280289111,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.614794770326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.0737289489383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.73946110757276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.385381149127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.70359326366027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.73946110757276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.137731490402355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017331062650004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.178787776858607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005545940048001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.43780607247796,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.43780607247796,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.619811,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025975785973735,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005566871563188,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011980858213602,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013866962418726,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.023622899767094,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002352886206641,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.493409279941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.3180775652922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.24659106537639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.606366156723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.74178482089351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.24659106537639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.415080706378124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.044250122539114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.53923004882426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014160039212516,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.74240940254652,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.74240940254652,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.30573,Mm²,,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.017816690882823,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004440809224195,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00823521079055,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009455166081288,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.016182719152562,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001633971730261,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.03576608295941E-18,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.747198177715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.3351260919128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.06960466100048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.458829612807,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.46724034941209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.06960466100048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.30938986087013,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030469374191993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.401840955892909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009750199741438,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.27612144955926,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.27612144955926,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.544496468,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021864260565784,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001901283013881,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010678504860329,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011185755705455,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.019601309597225,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.002262950968559,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,143.907966548023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.51943617791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.188933211812046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013380529754909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.245862865103107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004281769521571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.920666013712047,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.920666013712047,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.395248,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015774111174774,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001344106438375,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00770407589776,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008070035277014,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.014141490668185,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001632620506589,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,138.572628021865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.8539456238766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.530142708643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.3132625996405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.13139501394212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009032976299946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.170944537747772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002890552415983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.646425073457395,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.646425073457395,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.296436,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011075439761012,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000947755433552,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005409244779278,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005666194981734,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.009929131745747,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001146308015265,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,134.187418274338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.0824850801153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.785517939382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.3863952256369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.089421364085764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006842479547209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.146311418717428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002189593455107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.734573947110676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.734573947110676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.328197,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01258572700115,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001076028141846,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006146869067361,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006438857933788,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.011283104256531,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001302622744619,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,126.58638804529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.2358862737061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,165.82816833933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.79548360758595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.096031667683636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006969554167372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.124857657125879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002230257333559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.362389813907933,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.362389813907933,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.194095,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0062089586539,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000529438819119,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003032455406565,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003176503247335,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.005566331433222,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000642627220679,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.5442612688713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.3892874672969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.402982262221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.204571989535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.037575831433746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003763363750965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.048758717591963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001204276400309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.303623898139079,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.303623898139079,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.172921,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005202100493808,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000341067665943,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002540705881176,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002661394612632,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004663683092699,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000538417401109,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.197741837325,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,17.6442515952402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.739041806896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.64616051047685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.034109856866074,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003051061630101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.044293797111487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000976339721632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.166503428011753,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.166503428011753,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.059993,Mm²,,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002852764786927,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000151920487285,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001393290321935,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001459474464992,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00255750363148,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000295261155447,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,96.284588689876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,17.4514165425665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.132811183738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.58445329362126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01672182454069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001046962832638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021691655905976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000335028106444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.011,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.216963761018609,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.216963761018609,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.141696408,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00371732032706,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000718545344935,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001654207545541,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002063112781518,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00343852130253,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000278799024529,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,185.699015441959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,243.265710228966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041350271842289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003482066670463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053840158452688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001114261334548,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.254652301665034,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.254652301665034,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.155276,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004363052027065,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000871931579546,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001941558152044,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002421493875021,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.004035823125035,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00032722890203,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,179.632808624546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.7176688492964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,235.318979298156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.82965403177486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046988409385054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004769716748243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.061169020918001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001526309359438,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.166503428011753,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.166503428011753,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.123515,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002852764786927,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000568473208305,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001269480330183,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001583284456745,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002638807427908,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00021395735902,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,177.016300141855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.8712571935429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,231.89135318583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.87880230193374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.030287533119976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00381306333226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.039424417564125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001220180266323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.137120470127326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.137120470127326,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.112928,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002349335706881,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000442709876105,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001045454389562,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001303881317319,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002173135528865,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000176200178016,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,168.392054305051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.0248455377894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.593591139617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.92795057209261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023760113690462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003503573756891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.030918012962587,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001121143602205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.274240940254652,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.274240940254652,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.162334,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004698671413763,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00101944020259,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002090908779124,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002607762634638,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00434627105773,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000352400356032,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.150442643156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.9888208238357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,190.147079862534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.5164226636274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041146425945732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005842209239617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053486346045072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001869506956677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.04799216454456,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.04799216454456,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.441125,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017955637188307,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00392968161116,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007990258548796,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00996537863951,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.016608964399184,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001346672789123,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,133.061881105806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.3487090320741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.311064248605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.6315868902637,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.144569409949433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016034324271774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.18779823067695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005130983766968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.734573947110676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.734573947110676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.328197,Mm²,,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01258572700115,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002740818177358,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005600648515512,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006985078485638,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.011641797476063,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000943929525086,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.404960531495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,166.900498296259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.88706053753151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.097178272087924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008065157410666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.126190665157045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002580850371413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.812928501469148,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.812928501469148,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.356429,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000462405299698,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000462405299698,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000350873141411,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000385646019948,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,7.67592797498115E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,160.016303687274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.621357830329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.131540194893477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008758934392229,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.171865557223286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002802859005513,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.07737512242899,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.07737512242899,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.451712,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000660217579637,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000660217579637,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000500973099428,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000550621461417,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00010959611822,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,156.93203949818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.7858072365865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,205.580971742615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.57145831570768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.171007469266158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012099470558453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.223420618599047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003871830578705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.79333986287953,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.79333986287953,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.349371,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000494192690017,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000494192690017,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000374993413185,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000412156703474,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,8.20359865428461E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,155.528772378971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.0536653089524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.742691816452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.65717289886476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.124810414170235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009451766102654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.163060438405651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003024565152849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.812928501469148,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.812928501469148,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.356429,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000496690459465,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000496690459465,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000376888720642,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000414239843194,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,8.24506162711625E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.827999707185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.4014204922438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.274679616413,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.48845455751802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.123257832206431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00834094490463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.161015662103257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002669102369482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.235063663075416,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.235063663075416,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.148218,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000123867800405,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000123867800405,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.39908869470832E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000103305745538,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.05620548671795E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.901950969548,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.7491756755352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.551555770108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.31973621617128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.030486801618218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002927183320276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03980698296213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000936698662488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.930460333006856,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.930460333006856,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.398777,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000530536241324,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000530536241324,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000402570899917,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000442467225264,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.80690160598085E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.895074503255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.5140602701102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.132547599264,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.20449928643525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.11043546112992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008978089412334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.14415299241416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002872988611947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.881488736532811,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.881488736532811,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.381132,Mm²,,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000523689929455,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000523689929455,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00039737591847,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000436757401165,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.69325282894831E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,112.714507877279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.656005319235,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.79398424795461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.100937946045749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009365989251096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.131738482478424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002997116560351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.117531831537708,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.117531831537708,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.10587,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,3E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,3E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.5726E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.4274E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,2.502E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,4.98E-07,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,129.290600722932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.370686947041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.0165262989159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00260166368086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021236984858009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000832532377875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.127326150832517,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.127326150832517,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.109399,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.41455519393307E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.41455519393307E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.41509832659715E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.73045361273354E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,1.17973903174018E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,2.34816162192889E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.72396346161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.8539456238766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.698392134709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.3132625996405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017449364298325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002500198797306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022411828282167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000800063615138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.09794319294809,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.09794319294809,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.098812,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.27646284830766E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,2.27646284830766E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.19332182508288E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.08314102322479E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,1.89857001548859E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.77892832819072E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.955262196774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.0824850801153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.381393477774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.3863952256369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013249355672539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002280826515736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.017012933662843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000729864485036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.186092066601371,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.186092066601371,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.130573,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000102037213221,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000102037213221,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.34879071707008E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.85493060507811E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,8.50990358267159E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.6938177394766E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.131531474494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.0824850801153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,156.062306231587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.3863952256369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.024276117758987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003013949324366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.031148641954724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000964463783797,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.137120470127326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.137120470127326,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.049406,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.56706343983425E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,9.56706343983425E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.01505465516112E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.55200878467314E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,7.97893090882177E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.58813253101249E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.590692484384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,17.7735135116888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.083807154543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.68752432374042,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015482457628397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000878118208558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.019800808317743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000280997826739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.176297747306562,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.176297747306562,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.127044,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000181818181818,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000181818181818,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.53090909090909E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.65090909090909E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000151636363636,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.01818181818182E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.4840735753523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.0840702682083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.154136383712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.42690248582667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018300540551554,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002551560623154,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.023355008039806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000816499399409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.127326150832517,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.127326150832517,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.109399,Mm²,,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.89606579409937E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.89606579409937E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.93917689266892E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.02148104832482E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.58131887227888E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.14746921820496E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,88.91743631403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,18.5288978498956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,116.481841571379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.9292473119666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3206592198515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012762930871111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002027042895881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016272600492517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000648653726682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.048971596474045,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.048971596474045,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.081167,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00012335761401,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00012335761401,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.90019467811565E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.43556672292063E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000102880250085,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,2.04773639257202E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.629379254947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.43448682398,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.86372322541989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006721781493731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001994608821993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008720072755681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000638274823038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.137120470127326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.137120470127326,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.112928,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000575901727557,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000575901727557,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00027545379629,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000300447931266,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000480302040782,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,9.55996867744442E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.96901867478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.836911027054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.949414463962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.6278115286573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018456198288985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002691854688463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.023938328955474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000861393500308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.039177277179236,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.039177277179236,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.077638,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000119774329453,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000119774329453,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.7288061777453E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.24862676757207E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,9.98917907639468E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.98825386892268E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.755777311297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.0752801373246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.3600682778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.70408964394387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005225668017956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001869156599302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006777256302638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000598130111777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.137120470127326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.137120470127326,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.112928,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000603187328233,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000603187328233,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000288504499094,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000314682829139,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000503058231746,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000100129096487,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.493525614265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.3066229215323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.466518554687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.81811933489032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017568275636221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002406114313283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022775150280353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00076995658025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.019588638589618,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.019588638589618,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.07058,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.32663939743002E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,5.32663939743002E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.54773162379078E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.77890777363924E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,4.44241725745663E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,8.84222139973383E-06,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.029213459137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,18.5379657057399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.658269631469,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.93214902583678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002108885647525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001308409619511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002728455797816,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000418691078244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.333006856023506,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.333006856023506,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.183508,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001401484615734,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001401484615734,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000670330091706,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000731154524029,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001168838169522,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000232646446212,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.5838160180904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.9479012474861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.664798983698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.70332839919556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032039660190148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003844107462124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.041390820041575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00123011438788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.274240940254652,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.274240940254652,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.162334,Mm²,,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001273786140489,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001273786140489,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000609251910996,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000664534229493,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001062337641168,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000211448499321,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.0317961225932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.3152701724376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.011652920597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.18088645518004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.62939884702997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025411493233589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003135525068172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03281047452981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001003368021815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.558276199804114,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.558276199804114,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.264675,Mm²,,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000620835692324,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.000620835692324,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00024833427693,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000372501415395,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000517776967399,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000103058724926,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,211.279405635869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.54,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,65,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.7,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.120266163449975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00650415920215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.084433692458374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017203875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.342801175318315,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.342801175318315,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.187037,Mm²,,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000585837896869,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.000585837896869,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000234335158748,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000351502738121,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000488588805989,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,9.72490908802545E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,184.105722567024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.95,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,65,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.7,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.064532473729941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004596272502853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.045472575905975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012157405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.166503428011753,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.166503428011753,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.123515,Mm²,,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000391227362635,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.000391227362635,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000156490945054,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000234736417581,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000326283620438,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,6.49437421974302E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.754048444822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.5741350794372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.5,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,65,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.7,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.029287748300084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003035274294337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.02067972575906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008028475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.186092066601371,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.186092066601371,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.130573,Mm²,,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000449409893489,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.000449409893489,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000179763957395,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000269645936093,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000374807851169,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,7.46020423190993E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.728257264447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.2602553413527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.8,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,74.75,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.7,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.029006724881069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003690026320686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.020563173359452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00976033175,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.088148873653281,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.088148873653281,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.095283,Mm²,,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000228717535079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.000228717535079,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.14870140315977E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000137230521047,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000190750424256,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,3.79671108231131E-05,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.862399765748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.8254604481798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,77.74,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.7,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010931088128737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002746576347884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007818805093046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00740730042,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.646425073457395,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.646425073457395,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.296436,Mm²,,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000704209252743,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.000704209252743,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000281683701097,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000422525551646,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000587310516788,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116898735955,1e6 dimensionless,Own calculations,,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.846064169704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.3906655550068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.14472222803306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.2,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,77.74,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.7,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.075625777690996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008712451334464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.054235063663076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Latvia,lv,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02304493464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,91.0007163909,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.28,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.48,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.15072,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01664,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.11264,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.947,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,0.046,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,15.91,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.811471,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.119092,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.223787249240122,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.083920218465046,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.20118473706687,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002909234240122,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019693277933131,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.031248437056583,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013568826134796,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,283.233362294706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.3259443448464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.1810570864359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,294.675990131412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.9560234102426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.4227603111184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.10566998781102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003611577363916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.39483500864618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000232946739973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,18.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,16.424452,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.141968,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.26612537747474,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.099797016553028,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.239246714349791,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003459629907172,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.023419033217777,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.28,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.040284955264503,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021112970705864,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,234.33363731029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.3072448729417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.5093038719685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,243.800716257626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.21281729430474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.9730988717424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.08547760724591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004870530940122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.40110419239236,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000314149245638,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,13.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,11.571773,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.099484,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.187497425039021,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.070311534389633,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.16856018511008,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002437466525507,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016499773403434,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.19,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.029235862316329,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.028525682737304,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.366038456307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.2279486791212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7177342733985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.319626409941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.78820268980331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.32255328278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.87481374279005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004300489246394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.0584095485201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000277381556392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,13.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,11.571773,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.099484,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.187497425039021,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.070311534389633,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.16856018511008,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002437466525507,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016499773403434,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.194,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.029445390043613,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.024321748802986,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.792923970462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8008583034553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.5129801393748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.834558098869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.18015536057286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.9792625016758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.61087341345031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003362644587461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.78206960302276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000216890575891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,10.37,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,9.002197,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.072276,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.145862587971091,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.054698470489159,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.131130466586011,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001896213643624,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012835907741456,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.11,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.020685523541981,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.04461552342396,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.5030104169016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.6331496513239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6952527828489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.3209320377444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.52433815251039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.2848608157245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.982384488224143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001708109524199,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10582840608645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000110173064311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,10.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,9.332075,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.079876,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.15120760083792,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05670285031422,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.13593563315329,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001965698810893,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013306268873737,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.11,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.021211889131043,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.048549883165929,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.9290797905671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.3720088934442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6436951785356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.037014614106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.44299457362715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.1984193363327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.853827665455813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001786986582373,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.97479443102051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000115260634563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,8.3907163909,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,7.28398089894029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.06103344457084,Mm²,,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.118022334398084,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.044258375399282,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.106102078623877,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001534290347175,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.010385965427031,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.015925845943026,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019038950184309,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,58.9722055043538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.1036218815452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6172076725517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.3546826067297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.36118361135967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.1540103838002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.535419829687564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001288026736351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.624403637828584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.3077724494656E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.7,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.6293,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0091,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0616,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.677,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.023,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,12.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,10.486648,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.090896,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.211059805392689,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.189742765048028,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002743777470105,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018573262874557,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.024905057036337,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006154748356352,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,299.049359943859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,25.985375281446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,311.130954085591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.67605670565327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.2752355058348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002361966671582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.49612050718938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000152346850317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,12.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,10.495329,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.090972,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.243194133700097,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.218631526196387,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003161523738101,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.021401083765609,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.028696907776612,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014497225923486,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,264.863274125444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.0045553480334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,275.563750400112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.99979381994815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.91915257561869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002820546409121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.12572514239297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000181925243388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,7.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,6.51075,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.056088,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.160263192348625,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.144076609921414,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002083421500532,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014103160926679,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.018911056697138,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011352135651487,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,181.133660859418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.50683302205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.451460758138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.99969072992223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.26574611498076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002608475250541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.37186910834812,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00016824665366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,7.37885,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.063688,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.181640371307784,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.163294693805698,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002361324827001,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015984352675085,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.021433563814319,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010206807493465,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,144.002312262801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.6425318652597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.820005678218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.29894330530925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.16052561205271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002270001569435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.26972927714473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000146415101229,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.139152,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.04408,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.106020863655332,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.095312756426144,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001378271227519,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009329836001669,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.012510461911329,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013510401744003,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,106.870963666184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.7782307084693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.188550598298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.59819588069627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.617448311285475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001092224409629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.685796176915684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.04484744210915E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.503754,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.047272,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.11158154480341,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.100311808778266,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001450560082444,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0098191759427,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.013166622286802,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.028414922516608,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,86.2541242187704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.831575227556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.7387908372087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.53713660217736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.54778375322629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001126566224157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.616396434328949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.26635214581282E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.03,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.366543,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.037316,Mm²,,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.0834954067542,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.075062370672026,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001085440287805,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00734759579437,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.009852457996996,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003642948757204,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.637284771357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.8849197466427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,11.5240176720404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,68.2890310761198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.47607732365845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.3211680289429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.344573835247739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000853973665266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.395372465807796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.50813014096388E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.268228511547776,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.070991106192917,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.241137431881451,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003486970650121,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.023604109016204,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.27,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,-0.001771488452223,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.7284547685,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.63237158453485,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0055362562406,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.012727443847433,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011441972018842,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000165456770017,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001120015058574,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001501838373997,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001225605473436,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,233.348962398683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.0163031662244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.77626047959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.83905155422147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.157946203217339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000243685533092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.170932862690941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.57177168844438E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.139989411,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.9896248076891,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0086639195236,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.022931243774643,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020615188153404,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00029810616907,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002017949452169,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002705886765408,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000225357009235,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,180.292157208503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.1534405326989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.575960359727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.58989691435908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.194670305393745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000347886177371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.21287241757109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.2438658440427E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.2745081524,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.10640052709844,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.00968626195824,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027234232690396,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.024483575188666,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000354045024975,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002396612476755,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.003213639457467,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004020593232929,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.925700887982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.0098298846157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.124299203856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.51613402755772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.133149512350922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000377859431209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.15008600136389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.43719333129655E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.2740853058,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.23793345396498,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.00208304832408,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005857053731238,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005265491304383,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.61416985060885E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000515420728349,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.0009,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000957053731238,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.9875822551663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.5598178737788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.6634805782751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.97110825285873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025555634547085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.36575774061649E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.029073489625663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.10591374269764E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.2246848386,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.93124890838866,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01219560477336,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.039841724315759,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035817710159868,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000517942416105,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003506071739787,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00470132346926,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0151404008465,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.0494636223508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.1098058629418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.2026619526938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.42608247815975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.182442242672383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00026964245392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.209986366732486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.73919382778501E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.2515299972,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.95455319056932,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01711162797872,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03962605603451,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035623824375025,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000515138728449,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003487092931037,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.004675874612072,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004950181422438,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.5230068484335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,20.2736754335193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.0893363251102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.307652065462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.156251031484176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00034691559178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.182980462695564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.23760556697905E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.805648,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.014896,Mm²,,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.034526927643884,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.031039707951852,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00044885005937,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003038369632662,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.004074177461978,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010452750181906,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,48.9965500745162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,18.4375450040969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.9760106975266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.18922165276425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.118117574428389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000274645670381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.141750978777374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.77146457395763E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,23.5674639174,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.311771488452223,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.31,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.001771488452223,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.1015452315,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.69245141546515,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0226597437594,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041030013951256,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.036885982542179,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000533390181366,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003610641227711,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.004841541646248,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006188472305008,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,233.348962398683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.0163031662244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.77626047959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.83905155422147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.672488278758885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000997398150983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.727781638765855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.43321807383849E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,5.690010589,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.9394981923109,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0423320804764,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.075272548495628,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.017,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.067670021097569,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000978543130443,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006623984267615,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.008882160722484,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006390387773143,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,180.292157208503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.1534405326989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.575960359727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.58989691435908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.971654726233482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001699778676035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.0625066324283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000109635724604,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,4.5554918476,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.95462247290156,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.03370973804176,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.060264120014612,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054177443893136,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00078343356019,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005303242561286,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.007111166161724,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013152953852887,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,103.925700887982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.0098298846157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.124299203856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.51613402755772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.475918115458374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001315011146464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.536454438808094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.48182189469292E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,4.5559146942,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.95498954603502,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.03371295167592,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.060269713807577,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054182472713012,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000783506279498,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005303734815067,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.007111826229294,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013157887578283,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.9875822551663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.5598178737788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.6634805782751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.97110825285873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.424792166850517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001030261663204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.483266836252365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.64518772766335E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,2.2253151614,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.93179609161134,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01600039522664,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.02943845899485,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02646517463637,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000382699966933,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002590584391547,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.003473738161392,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015964720833457,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,78.0494636223508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,22.1098058629418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.2026619526938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.42608247815975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.182493934266286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000353765632191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.210045862438279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.28178832763422E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,2.1584700028,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.87376780943068,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01549237202128,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.028554171459051,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025670200141687,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000371204228968,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002512767088396,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003369392232168,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015184779226883,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.5230068484335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,20.2736754335193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.0893363251102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.307652065462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.149792880745347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000314087322055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.175417533995997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.02586322725325E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.2807163909,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.11178989894029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00882144457084,Mm²,,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.016942461729251,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015231273094597,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00022025200248,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001490936632174,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001999210484052,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004943251245199,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,48.9965500745162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,18.4375450040969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.2533902785763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.9760106975266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,1.18922165276425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.8972341410609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.072728420011437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000162645781276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.087280193243414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.04906528923026E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.089,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.72,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.621135,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024009381853858,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.010628571428572,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011707265328324,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012122850461018,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.021504252371996,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.002505129481862,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.809661954149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.21595015796954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,283.196000245088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.32392523695431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.517175277057081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020399892244167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.0658541227932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005507970905925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.63,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.213245,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041562730189462,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.018942857142857,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020190143838502,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021008452157412,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.037302276422775,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.004260453766687,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.325053299226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8273492120041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.13846434083798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.282860329398,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.1333842872411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.20769651125698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.831823121953625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041040862294718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.71379239185354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011081032819574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,6.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.120365,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.038912669430833,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.017571428571429,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018884377167988,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019680964262844,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.034933885237573,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.00397878419326,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.56125112837913E-17,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.2987807174362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.4746984427682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.01945986674089,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.918476085093,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.30816857954742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.02918980011134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.567757179592689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038624245520832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.28817814519401,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010428546290625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.98,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.08747,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.035867625066869,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.017085714285714,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017446380474391,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018092590140865,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.032165607950621,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.003702017116249,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-5.20417042793042E-18,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.4424129474495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.4795496521397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.16488891621161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.37579480122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.76947840607772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.24733337431741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.482031665144693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035320535860212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.990426306489715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009536544682257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.36,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.5805,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027460312785886,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0096,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012888894184416,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014478050859535,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.024897067574206,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.00256324521168,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-5.20417042793042E-18,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,64.2417623349625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.5027290166204,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.36404637258957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.980448033372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.31573683448751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54606955888435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.223795517257375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020028834194148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.458729099109983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00540778523242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.47,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.601785,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.026308832587836,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009914285714286,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012344855448175,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013887415591274,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.023811969236062,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002496863351774,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.3925071442193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.630741176499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.36255131128871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.222489788534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.08030011765474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.54382696693307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.228170052840613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0202384755789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.467639119141471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005464388406303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.84,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.84,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.28638,Mm²,,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010159493738418,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005257142857143,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004856827783271,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005244777955147,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00911104352426,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001048450214158,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,46.9845120015216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.5826292824654,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.33162177778411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.2579398431498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.71730990626567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.49743266667617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.090741686153923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008185493373912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.18538988541808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002210083210956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.32,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.32,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.214785,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.018566886800563,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005671321160043,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009068067513395,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009498819287168,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.016645214016705,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001921672783858,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls ,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,0,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,138.624369692013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,286.952445262466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.18581968883442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007054168346114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.3830305090079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001904625453451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.388935,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029116254300883,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.008893662728249,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014220378600551,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014895875700332,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.026102721980742,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003013532320141,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,130.557479977471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.5439232808901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,270.253983553365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.24685928584032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.274700595781239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011879600801253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.566095664297276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003207492216338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.89,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.89,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.354105,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.026584406100807,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00812030075188,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012983823939634,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013600582161173,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.023832920069373,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002751486031433,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.5170608929884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.849362513699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.300316048486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.32932787869872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.173247195382763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010923913512913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.476307522774161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002949456648487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.79,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.334755,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.025177823767431,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007690655209452,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012296849128013,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012880974639418,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.022571919007501,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.002605904759929,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,76.4801387755553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.381413512603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,158.313887265399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.66298164840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.140744586518338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009500820080411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.289149565370206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002565221421711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.93,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.168345,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013081215700397,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003995703544576,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006388865748074,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006692349952323,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.011727309875406,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001353905824991,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.4432166581222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.9134645115071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.327458482313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.99663541810693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.060999944811823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00436240218319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.125131166368205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001177848589461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.89,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.89,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.160605,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012518582767047,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003823845327605,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006114075823425,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006404506943621,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.011222909450657,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001295673316389,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,54.3126647058405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.5812527054715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.42721594109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.3669382304773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.050250100033999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003787267090762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.102927964856271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001022562114506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.42,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.42,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.06966,Mm²,,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005907645800179,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001804511278195,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002885294208808,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003022351591372,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005296204459861,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000611441340319,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.1821127535588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.3231709107995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.14812184921438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.5269733998667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.29725614591586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.22218277382157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.019878698533165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001624692085646,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040634645592949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000438666863124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.032,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.25,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.25,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.036765,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00351645583344,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001980198019802,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001564822845881,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001951632987559,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003252721645932,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000263734187508,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,191.449789853048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,396.30106499581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048495662485978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001207470257443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.100025088783027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00032601696951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.64,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.11223,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009002126933606,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005069306930693,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004005946485455,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004996180448152,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.008326967413586,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00067515952002,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.107926607069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.053660323777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,345.913408076632,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.0844882874198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.108570103486677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004607452298137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.223816126856275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001244012120497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.64,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.11223,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009002126933606,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.005069306930693,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004005946485455,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004996180448152,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.008326967413586,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00067515952002,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.662751095835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.4641969270147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,260.121894768379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.195333170294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.082045191159488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004653526821119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.168909558338993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001256452241702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.090945,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007454886366893,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00419801980198,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003317424433267,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004137461933626,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.006895769889376,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000559116477517,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,97.7533835303559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.7813326811759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.349503907837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0909598239175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.053151709119247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00407263830069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109258860843391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001099612341186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.92,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.16641,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012940557467059,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.007287128712871,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005758548072841,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007182009394218,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.01197001565703,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000970541810029,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,69.8440159648763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.0984684353371,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.577113047294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.986586477541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.066586725971282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008004066132324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.136506290928904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002161097855728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.85,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.152865,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.011955949833696,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006732673267327,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005320397675995,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006635552157701,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.011059253596169,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000896696237527,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,71.5665840136058,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.5794531196905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.142828908164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.1164523423164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.0629845274888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007426098101141,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.129150801187792,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002005046487308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.21,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.029025,Mm²,,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00295382290009,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001663366336634,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00131445119054,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00163937170955,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002732286182583,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000221536717507,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.0176360841722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.53286009086472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.3265066942363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.79929013629707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010405604196758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000953265992718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021236417334412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000257381818034,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.006,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.96,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.96,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.17415,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000743225806452,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000743225806452,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000563959741935,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000619850322581,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000123375483871,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.988246881334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,273.215671044361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.127601309726709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005719595956309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.263625933283529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001544290908203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.95,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.365715,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001509677419355,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001509677419355,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001145543225806,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001259070967742,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000250606451613,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.051140062105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7987918023335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.665859928556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.66567378663005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.212512802084881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01309215514399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.438868045306351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003534881888877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.86,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.3483,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00144,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00144,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001092672,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00120096,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00023904,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.9280027830944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.1567797203569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.660965761005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.76233052449635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.155975483572774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0125934063766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.321883493909797,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003400219721682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.76,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.76,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.32895,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001362580645161,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001362580645161,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001033926193548,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001136392258065,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000226188387097,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.432574508049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.2756144581087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.935429231661,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.44441590368935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.129117751121986,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000288113375995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.266340985429453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002777790611519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.5,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.08514,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000387096774194,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000387096774194,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000293729032258,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000322838709677,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,6.4258064516129E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.9371462330035,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.3944491958605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.209892702317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.12650128288234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.031433465158496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002247223404536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.06480228441415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000606750319225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.41,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.41,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.067725,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000317419354839,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000317419354839,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000240857806452,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000264727741935,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.26916129032258E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,64.2715553919374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.089672083281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.04211966131,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.12421146248586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.02673254918513,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00203782304184,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.05511908627279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000550212221297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.048375,Mm²,,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00024,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00024,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000182112,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00020016,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.984E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.2911109154462,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,0.929784083988313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.172599594974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.39467612598247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016188477449825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00158877665453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.033345855473497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000428969696723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.33,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.052245,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000152073732719,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000152073732719,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.97170506912443E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.23566820276498E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000126829493088,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,2.52442396313364E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.492319039567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,243.209100411903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.040708660484162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001715878786893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.083163295937586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000463287272461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.090945,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000244239631336,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000244239631336,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000128030414747,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00011620921659,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000203695852535,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,4.05437788018433E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.4781799224442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.5439232808901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.84983243946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.24685928584032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.055303082197034,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002777817102781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.112704881450122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000750010617751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.3,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.3,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.04644,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000138248847926,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000138248847926,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.24700460829493E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.5778801843318E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000115299539171,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,2.29493087557604E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.3966515240586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.849362513699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.511068654801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.32932787869872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.021979172912768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001432644395136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.044493586779766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000386813986687,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.52,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.52,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.08901,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000239631336406,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000239631336406,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000125614746544,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000114016589862,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000199852534562,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,3.9778801843318E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.7483878631424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.3016858246236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.539162876705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.37145517264837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.033080135945121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00243012305525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.066736826080317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000656133224917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.21,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.029025,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.67741935483871E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,9.67741935483871E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.07290322580645E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.60451612903226E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,8.07096774193548E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.60645161290323E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,48.1001242022262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.7540091355482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.5672570986081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.41358246659801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.011333150301353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000689460115159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022757310319036,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000186154231093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.17,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.021285,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,7.83410138248848E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,7.83410138248848E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.10663594470046E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.72746543778802E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,6.53364055299539E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.30046082949309E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.2816979752892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.8420303231695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.153114808849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.24734818725575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.009715322547278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000571332615429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.019542180354722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000154259806166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.11,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.009675,Mm²,,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.06912442396313E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.06912442396313E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.65723502304147E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.41188940092166E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,4.22764976958525E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.4147465437788E-06,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.8704865949354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,24.7635679073023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.86725818516763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,76.3219072515163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.68616333497161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.80088727775145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004701151925811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000239587519503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009363507398219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.46886302658504E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.17,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.021285,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000235023041475,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000235023041475,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000112411520737,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000122611520737,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00019600921659,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,3.90138248847926E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.225241310871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.26257070027142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,269.566249513502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.39385605040713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022522928041894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000699061727993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.046403217945865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000188746666558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.13,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.13,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.013545,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000179723502304,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000179723502304,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.59617511520738E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.37617511520737E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000149889400922,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,2.98341013824885E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.301676746366,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.8576404112509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.21364589709208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.234470864977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.60156291103775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.32046884563812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01631699194365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00043151173937,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03361214216238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00011650816963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,0.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.04257,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000387096774194,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000387096774194,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000185148387097,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000201948387097,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000322838709677,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,6.42580645161291E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.8877865863924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.1762168153634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.22542573665709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.067718233832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.68757854014813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.33813860498563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025791699450454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00136974154983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053033639914869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000369830218454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,0.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.02322,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000248847926267,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000248847926267,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000119023963134,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000129823963134,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000207539170507,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,4.13087557603687E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.0391940406124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.4759518815966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.22542573665709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.311131664068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.68850700803109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.33813860498563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016427631559909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000661211602691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03377686864843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000178527132726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.14,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.01548,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000193548387097,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000193548387097,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.25741935483871E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000100974193548,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000161419354839,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,3.21290322580645E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.3942328962977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,24.7756869478298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.39774368457085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.296062095336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.68943547591406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.59661552685627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.009350876721322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000383527633952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.019164974867107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000103552461167,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.49,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.49,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.083205,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000677419354839,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000677419354839,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000324009677419,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000353409677419,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000564967741935,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000112451612903,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.8258252693288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.9965262510477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.39534622714985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.259458307511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.55906208778289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.59301934072477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.033428374033275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002329450966718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.068527714047635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000628951761014,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.42,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.42,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.06966,Mm²,,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00058064516129,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00058064516129,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000277722580645,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000302922580645,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000484258064516,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.63870967741936E-05,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls ,,1,0.78,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.7788251811987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,25.814541611591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.43346937843838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.9021681250812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.96992623512956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.65020406765757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.021089163715048,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001798240968663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.04307199632095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000485525061539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.69,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.69,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.121905,Mm²,,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000795716639209,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000795716639209,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000318286655684,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000477429983526,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.0006636276771,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000132088962109,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,131.109932899608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.8429282590216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.26257070027142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,271.397561102189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86759062993582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.39385605040713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.092027027483917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004003717169416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.189606077835291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001081003635742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,1.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.241875,Mm²,,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001510708401977,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001510708401977,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000604283360791,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000906425041186,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001259930807249,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000250777594728,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls ,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor ,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,123.297458270957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,34.0745380687349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.21364589709208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.225738620881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.20012527855842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.32046884563812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.164419546460144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008241778895375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.33869553178114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002225280301751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,1.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.21672,Mm²,,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0013607907743,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0013607907743,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00054431630972,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00081647446458,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001134899505766,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000225891268534,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls ,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor ,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.9088430043959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.3061478784482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.22542573665709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.111305019099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.53265992718101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.33813860498563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.108718437114442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007651548368217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.22355034347642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002065918059419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,1.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.22059,Mm²,,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001383855024712,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001383855024712,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000553542009885,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000830313014827,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00115413509061,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000229719934102,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls ,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.0327833300872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.7693674978748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.22542573665709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.297861493281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.1977292244262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.33813860498563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.109509850880093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008331544776356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.225163200117919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002249517089616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.66,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1161,Mm²,,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000761120263591,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000761120263591,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000304448105437,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000456672158155,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000634774299835,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000126345963756,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls ,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.4073385777018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.2801421977898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.39774368457085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.323190855843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.6056383934032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.59661552685627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.0440913542931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004560424509163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.090367072212581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001231314617474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.66,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1161,Mm²,,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000761120263591,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000761120263591,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000304448105437,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000456672158155,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000634774299835,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000126345963756,1e6 dimensionless,Own calculations,,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor ,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.8761379427476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.0615352284057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.39534622714985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.363605541488,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.73661451166954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.59301934072477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.045059179552132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004186744240018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.09237137242226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Lithuania,lt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001130420944805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,22.0011935548041,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.1595,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0484,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0121,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.164,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,5.61965386910682,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.38080654465884,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.013713,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.05619349005425,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.035759493670886,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.040740280289331,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012362567811935,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003090641952984,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.058195302707415,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.004306745043184,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005858984680887,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.703185486725664,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.296725486725664,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,0.727379115044248,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.272539115044248,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.890265486725664,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.109734513274336,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.890265486725664,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ROOF,construction material,,insulation,0,0.072566371681416,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.109734513274336,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,317.124654566278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.7073468309418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.2125337578563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,362.695467427453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.86878061723888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.2125337578563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.53656712894806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000407376847093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.73620404417571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000135330588604,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.01830117366222,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.1434413168888,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.011235,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.040180831826402,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.025569620253165,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029131103074141,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008839783001808,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002209945750452,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.042472588424785,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003248492402586,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00584229064225,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.745049504950495,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.254950495049505,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,0.111386138613861,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.888613861386139,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.111386138613861,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.888613861386139,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.856435643564356,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.143564356435644,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.856435643564356,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.856435643564356,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.143564356435644,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,303.101069012028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.0741075424421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.7861933628333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,346.656692629057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.6380185255993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.7861933628333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.06041541575339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000528877598239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.19732996261401,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000175693138135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.05351104038194,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.39794798090312,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.008295,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.030533453887884,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.019430379746836,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022136754068716,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006717359855335,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001679339963834,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.030360424256056,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002121428283909,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00119161228398,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.335504885993485,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.335504885993485,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.664495114006515,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.283387622149837,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.716612377850163,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.947882736156352,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.052117263843648,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.947882736156352,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.947882736156352,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.052117263843648,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.283387622149837,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.841645433221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.5419405778078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2681371314368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.110089881975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1426326599478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2681371314368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.504922676406766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000278230397093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.565515091753218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.24281379142667E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.54625024865725,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.00598756713746,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.007224,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025461121157324,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01620253164557,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01845931283906,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005601446654611,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001400361663653,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.02465484304634,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001665869598215,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000121661930287,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.40234375,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.40234375,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.59765625,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.59765625,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.3828125,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.6171875,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.59765625,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.40234375,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.59765625,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.59765625,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.40234375,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.40234375,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.063689675278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.8049343661325,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.6680231417584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.771541881615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.57239919642923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.6680231417584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.373481594139075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000186414845861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.417027275774245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.19270117950048E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.93952655659439,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.53717217028049,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.005691,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.019394213381555,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.012341772151899,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014060804701628,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004266726943942,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001066681735986,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.019001930537956,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001271290615281,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.694871794871795,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.305128205128205,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.694871794871795,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.979487179487179,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.305128205128205,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.58974358974359,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.2330145009328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.2135062267467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.7892057854771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.486898684717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.04372676852525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7892057854771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.197615452236104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000137799063936,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.217988954151538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.57768490396772E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.66560572906306,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.09821354684703,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0084,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.026654611211573,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.016962025316456,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019324593128391,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005864014466546,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001466003616637,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.026105918144087,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002013062918969,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00383439860312,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.869402985074627,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.130597014925373,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.869402985074627,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.738805970149254,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.261194029850746,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.738805970149254,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.738805970149254,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.261194029850746,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.261194029850746,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.1697416858158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.9201021969051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.823547412144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.2649335660675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.94965794981187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.823547412144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.248107093895399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000175728858454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.273485389350257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.83771267784197E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,2.15834493733837,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.70625313308136,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.007329,Mm²,,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021582278481013,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01373417721519,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015647151898734,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004748101265823,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001187025316456,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.02154335438558,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001520412854093,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001069770126889,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.788018433179723,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.211981566820276,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.788018433179723,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.788018433179723,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.211981566820276,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.211981566820276,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,35.8508755061872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.751841176351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,26.5291172809342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.0026463164263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.23276163878379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.5291172809342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.108429654631502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000115445243981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.127219879717389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.83509100506464E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.087,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0264,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0066,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.11,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.59518599562363,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.56350021881838,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.010626,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.051613106173088,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.037419501975489,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011354883358079,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00283872083952,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.047312013991997,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003251625688905,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001049466492186,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,344.36073782171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.743807007933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0908661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,393.84537584669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.88089268803534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.0908661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.3424267614578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000316057693266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.51876527988796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000104994365703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.99383330017903,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.32613499104834,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.008148,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.034955001097534,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025342375795712,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007690100241458,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001922525060364,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.032042084339406,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002202165069145,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000710751688983,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,337.40630314748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.9522059512648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,385.891588909773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9365228170102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.860479430305677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000341826574091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.973262750068325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000113554787913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.02904316689875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.58064165506266,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.005208,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021404895509032,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015518549244048,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004709077011987,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001177269252997,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.019621154216613,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001348508417069,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00043523287535,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,202.53934318314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.5617647610119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,231.644246798557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1492182536081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.371397510532039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000174789670875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.417401933553151,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.80651286647912E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.52178237517406,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.188681241297,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.004137,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.015520125645699,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011252091093132,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003414427642054,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000853606910513,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.014226781841891,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000977767915679,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000315575888129,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,183.495157876819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.8699706373005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.863412063718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.92280424571124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.256558792967807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000123572068527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.287902242085525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.10506411645074E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.795703202705391,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.627639864730456,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.002604,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.00812323073573,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005889342283404,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001787110761861,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000446777690465,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.007446294841086,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000511763536351,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000165172358293,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.208013948133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.4803729863165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.76930555248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.12897990605434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.096802773464065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,7.15588912563682E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.107824940151109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.37718636753655E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.96936542669584,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.53452866520788,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.005082,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021898809211168,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015876636678097,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004817738026457,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001204434506614,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.020073908443571,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001379624980304,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000445275787294,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.239891912478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.8087095786427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,115.788064380301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.5770533220251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.205103392700929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000115913862079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.227427980379192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.85065849825316E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.70081559578277,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.32702021086135,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.004515,Mm²,,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.018091027550261,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013115994973939,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003980026061057,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000995006515264,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.016583441921072,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001139734735666,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000367850893522,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,44.1073359935161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.252714233503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.4455601757844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.39575166836969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.2608661776655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.091495401468603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.6926004764266E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109906353059443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.88768187826892E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.063693623551799,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.031632955106068,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046177877075054,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014012597181396,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003503149295349,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.054,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.407797891386513,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.327905430674358,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.000861,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004580383881162,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003320778313842,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001007684453856,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000251921113464,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.003883288715417,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000288564184513,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000408530981231,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,194.958921905992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.543807007933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,222.974518983884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.81445268803533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.076669205414733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.54372178338303E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.085855671840158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.45024376439842E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.447583051521782,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.358647423910881,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.000945,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005225830728867,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003788727278429,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001149682760351,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000287420690088,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.004430504085379,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000329227335919,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00046609930757,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,202.849850810368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.0419947166592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,231.999374371818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6103506448742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.086735728320437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,5.8629685007243E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.097190129853981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.94767813594061E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.865327232942112,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.68143835289437,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.001827,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.009128558378852,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006618204824668,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002008282843347,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000502070710837,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.007739270039443,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000575099177868,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000814189161541,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.96465183144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.502677146996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.634672299618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1295893482321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.110828856788991,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.12093911475617E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.122869886432436,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.033375973922E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.974736423314103,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.765978834294808,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.002058,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.009940995511624,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007207221745928,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002187019012557,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000546754753139,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.008428061204449,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000626282717232,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000886651589943,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.888790307939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.7665795167276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.67390947519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.56645771545692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.109265010881768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.06796206454255E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.120590099226408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.35137699784103E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.10403819375373,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.865890312313507,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.002331,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011270982645825,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008171462418223,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002479616182082,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00061990404552,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.00955563569687,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000710071906687,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001005275042268,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,71.3808409724457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.9409032635677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.6382678201862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.28876806415718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.096302220003092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,5.11442455073763E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.105184026539815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.69901183575504E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.427690471454148,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.34327642729262,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.001827,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004755802000405,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003447956450294,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001046276440089,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000261569110022,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004032009700516,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000299615526026,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000424176773863,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,35.8856024732569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.5780413171331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.0423635486639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1750253255516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025681315433229,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.84610814864021E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027451509951596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.45477126978277E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.328227571115974,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.266421444201313,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.001617,Mm²,,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003491250930752,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002531156924795,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000768075204765,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000192018801191,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002959912464507,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000219948808637,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000311389657607,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,5.1583810858994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.73772611606845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,5.89964044794314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,0.909472615757941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01162934805548,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.42690312968269E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011826835445244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.47061721968059E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,1.73,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.036306376448201,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.036,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.616669982096678,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.489300895166103,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.002226,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.012167542377235,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008821468223495,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002676859322992,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000669214830748,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000766555169766,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004400987207469,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,194.958921905992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.543807007933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,222.974518983884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.81445268803533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.114660628719636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.57645143996588E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.128368685448461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.18469716835666E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.576884821961408,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.45855890192958,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.002142,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01138253964322,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008252341241334,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002504158721508,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000626039680377,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.006,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000717099997523,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004665439645697,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,202.849850810368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,62.0419947166592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,231.999374371818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.6103506448742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.111042622831345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000132893952683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.124409396347454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.41473710813205E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.159140640541078,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.135767972946091,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.00126,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003140010936061,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0007,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002276507928644,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000690802405933,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000172700601483,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000197820688972,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,-5.78097529111621E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,122.96465183144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.502677146996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.634672299618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1295893482321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.021666804416187,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.22133732052149E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.024065827277067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.40232825787724E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.049731450169087,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.051227491545654,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.001029,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000981253417519,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.0002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000711408727701,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000215875751854,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,5.39689379635426E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,6.18189653036942E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.888790307939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.7665795167276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.67390947519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.56645771545692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006824529289708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.03398103227127E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00758193385685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.75688498920517E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.03978516013527,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.043541993236523,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.000756,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000785002734015,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000569126982161,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000172700601483,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.31751503708341E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,4.94551722429554E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,71.3808409724457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,21.9409032635677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.6382678201862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.28876806415718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004351099818092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.65873228672572E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004797728628521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.51030865650283E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.268549830913069,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.220308454346529,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.001491,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005298768454602,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003841607129587,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001165729060013,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000291432265003,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00033382241264,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002964946041962,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,35.8856024732569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.5780413171331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.0423635486639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1750253255516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016296392746132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.32268596038454E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01743247080809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.71596276039743E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.129301770439626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.112711478018699,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.001197,Mm²,,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.002551258885549,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0005,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001849662692023,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000561276954821,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000140319238705,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00016072930979,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00039052957576,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,5.1583810858994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.73772611606845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,5.89964044794314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,0.909472615757941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.2437029039547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004621274856946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.27705816093394E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004704823295238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.08863872106225E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.012,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.62,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.62,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.35725,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013602639447945,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004397202797203,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006466612028441,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007029236579809,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.012280350532859,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001322288915086,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,326.605653988823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.80739585975527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,327.912076604778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.80739585975527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.870922190603275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026451752522981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.705945017857077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008729078332584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.57,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.57,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.064305,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.002851358852233,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000956643356643,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001356271073789,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001472993121955,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.002571322796325,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000280036055908,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,316.608915089357,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2712126161759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.02537753551961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,317.875350749715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.829500163338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.02537753551961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.18390154679618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005033230327283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.100423415122584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001660966008003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.44,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.44,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.045728,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.002268770022201,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000738461538462,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001072743886387,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001181296364822,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.002048495716599,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000220274305602,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,313.660988323486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.7519837498751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.1557118602959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,314.91563227678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.3181546374588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.1557118602959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.140719348080864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003646898712914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.057071391420313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001203476575262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.94,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.94,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.117178,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005229351886298,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001577622377622,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002453511633931,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002748221931757,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.004734809208254,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000494542678044,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,216.299985104954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.8220281097844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.15787925544816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,217.165185045374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.3412692762288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.15787925544816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.209110392498778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009353385609848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.125723680442773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00308661725125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.16,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.16,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.134326,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.0068083718419,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001946853146853,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00322900814242,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003548062936122,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.006145456765331,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000662915076569,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,183.29645496322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.6864080642309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.10088904129066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.029640783073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.6465146611962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.10088904129066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.219700919045232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010032326449636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.136351414596261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00331066772838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.93,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.115749,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.00539923553849,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001560839160839,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002558104027162,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002815354412091,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004874742269119,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000524493269371,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,141.219018898026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.2223490115545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.14749673350911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.783894973618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.823375173813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.14749673350911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.137050859537328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008706911675738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053376194287628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002873280852994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.49,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.49,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.052873,Mm²,,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003038362826847,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000822377622378,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00146067753409,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001564796743138,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00273178386703,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000306578959817,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.9912423568583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.3437809173128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.03884629282225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.3552073262857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.9134477027132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.03884629282225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.047544743438344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003190556728441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.047723086273363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001052883720386,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.006,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.58,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.58,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.080024,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005799685352622,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001955056179775,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002832566326221,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002967119026401,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.005199417918626,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000600267433996,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,331.701651320551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,333.028457925834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.195497265794055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005925192565148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027866813625119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001955313546499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.12,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.01429,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001199934900543,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000404494382022,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000586048205425,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000613886695118,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.001075741638336,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000124193262206,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,331.701651320551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.8597056581441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,333.028457925834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7237028671875,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.040447710164287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000984005193855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040606926956921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000324721713972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.010003,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000899951175407,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000303370786517,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000439536154069,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000460415021338,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.000806806228752,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,9.31449466546112E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,331.701651320551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.5483027147255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,333.028457925834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.9509398958594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.030335782623215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000695691672055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.030455195217691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000229578251778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.19,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.19,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.024293,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001899896925859,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000640449438202,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00092790965859,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000971987267269,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.001703257594033,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000196639331826,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,207.574303813804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.9844384975475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,208.404601029059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.1148647041907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.040458011733839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001554373964421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040615768204738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000512943408259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.031438,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003399815551537,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00114606741573,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001660469915371,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001739345636166,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.003047934641953,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000351880909584,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,180.454043014011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.4205742803694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.175859186067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2787895125219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.063177658641257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001836626014226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.063423076139756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000606086584695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.26,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.034296,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002599858951175,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000876404494382,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001269771111754,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001330087839421,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002330773549729,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000269085401447,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.529447521149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.1627225951362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.003565311233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5436984563949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032211932368111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001823268734123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.032335202993533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000601678682261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.2,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.025722,Mm²,,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001999891500904,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000674157303371,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000976747009042,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001023144491863,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.001792902730561,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000206988770344,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,80.491543271182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,52.5813640702054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.8135094442668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3518501431678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017170828663938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001352497846614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.017235221898555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000446324289383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.63,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.087169,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006299658227848,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000724137931034,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002803347911392,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003496310316456,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00582718386076,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000472474367089,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,489.207781350121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,491.164612475522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.312184433659745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006454227615607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.229217237268747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00212989511315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.13,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.13,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.015719,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001299929475588,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000149425287356,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000578468616637,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000721460858951,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001202434764919,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,9.74947106690778E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,489.207781350121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.5533678200861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,491.164612475522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.5426113806284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.064419010120265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001454846388764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.064673398166567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000480099308292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.11,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.012861,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001099940325497,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000126436781609,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000489473444846,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000610466880651,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001017444801085,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,8.24955244122966E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,489.207781350121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.478901498287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,491.164612475522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.8480374944347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054508393178686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001202232152169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.05472364460248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000396736610216,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.037154,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002799848101266,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00032183908046,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001245932405063,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001553915696203,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002589859493671,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000209988607595,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,307.015260079714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.478901498287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,308.243321120033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.8480374944347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.087734731226395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003473115106267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.088078588317684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001146127985068,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.28,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.037154,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002799848101266,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00032183908046,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001245932405063,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001553915696203,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002589859493671,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000209988607595,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,264.944086274906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.435525738013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,266.003862620005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.7837234935443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.075954802561048,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00402881352327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.076251539937676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001329508462679,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.23,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.23,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.030009,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00229987522604,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000264367816092,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001023444475588,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001276430750452,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002127384584087,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000172490641953,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,213.832825536833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,109.519880995393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,214.688156838981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.1415607284797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.050635854991105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003286582108791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.050832581190598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001084572095901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.008574,Mm²,,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000799956600362,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,9.19540229885057E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000355980687161,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000443975913201,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000739959855335,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.99967450271248E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-5.42101086242752E-20,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,147.353417012211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.94283068026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32306572883823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012294118619284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000634842060552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.012341271712728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000209497879982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.58,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.58,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.080024,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000442748091603,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000442748091603,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000335957251908,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000369251908397,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,7.34961832061069E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,167.936999567952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.608747566224,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.098749712478008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005925192565148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.014939326317006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001955313546499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.12,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.01429,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.16030534351145E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,9.16030534351145E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.95083969465649E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,7.63969465648855E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.5206106870229E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.936999567952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.7065367391151,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.608747566224,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.633157123908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.02043097499545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001153296410002,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.020511584755243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000380587815301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.008574,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,6.10687022900763E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,6.10687022900763E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.63389312977099E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,5.09312977099237E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.01374045801527E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,167.936999567952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.5136021065063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.608747566224,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.8994886951471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013620649996967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000698897624461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013674389836828,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000230636216072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.15,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.018577,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000114503816794,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000114503816794,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.68854961832061E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,9.54961832061069E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.90076335877863E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.5732171479979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.5136021065063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.9515100165899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.8994886951471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014534151381319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001514278186333,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.014590895311608,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00049971180149,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.17,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.021435,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000129770992366,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000129770992366,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.84702290076336E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000108229007634,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.15419847328244E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.4401389286336,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.5049295377496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.7538994843481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.6366267474574,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01372941493487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001275488164642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013782754229341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000420911094332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.14,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.017148,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000106870229008,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000106870229008,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.10931297709924E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,8.91297709923664E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.77404580152672E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.9510476692795,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,67.8356196730345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.1948518599567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.3857544921014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.008858104228877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001163245206153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008892236815572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000383870918031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.007145,Mm²,,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.34351145038168E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.34351145038168E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.05465648854962E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,4.45648854961832E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.87022900763359E-06,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,33.5526303484625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.5106919745193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.6868408698563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.2985283515914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.32112539413049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002511162901982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000439493894158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002520557638479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000145032985072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.18,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.022864,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000321428571429,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000321428571429,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000168492857143,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000152935714286,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000268071428571,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,5.33571428571429E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,369.252781658727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,370.729792785362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.069101978991076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001692912161471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.069367840993871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000558661013285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.05,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.004287,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.92857142857143E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,8.92857142857143E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.68035714285714E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.24821428571429E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,7.44642857142857E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.48214285714286E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,339.264031735879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.8597056581441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,340.621087862822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7237028671875,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017695556668046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000295201558156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.017763409474393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.7416514191633E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.04,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.04,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.002858,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,7.14285714285714E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,7.14285714285714E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.74428571428571E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.39857142857143E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,5.95714285714286E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.18571428571429E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,309.27528181303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.5483027147255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,310.512382940282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.9509398958594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012956895337522,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000198769049159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013006379382613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.55937862223662E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.008574,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000142857142857,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000142857142857,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.48857142857143E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.79714285714286E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000119142857143,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,2.37142857142857E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,249.297781967333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.5502479025321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,250.294973095202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.3115818078356,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.021115590687389,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000527731825516,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021195365977619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00017415150242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.09,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.010003,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000160714285714,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000160714285714,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.42464285714286E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.64678571428572E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000134035714286,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.66785714285714E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,231.94776896849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.5521930903387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.875560044364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.6722237198118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022193538353417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000535682587483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022277039550246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000176775253869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.008574,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000142857142857,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000142857142857,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.48857142857143E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.79714285714286E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000119142857143,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.37142857142857E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,194.709564716466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.5139781920827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.488402975332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.9696128033873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01674853330732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000518846849019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016810840368029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000171219460176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.04,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,1,0.04,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,1,0.002858,Mm²,,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,7.14285714285714E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,7.14285714285714E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.74428571428571E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.39857142857143E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,5.95714285714286E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.18571428571429E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,153.924864821392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.2778442789338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.540564280678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2416886120482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.6471016250303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006742878657857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000157984078949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006767506636228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.21347460532337E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.34,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.34,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.045728,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000390804597701,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000390804597701,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00018692183908,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000203882758621,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000325931034483,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,6.48735632183908E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,306.667564428434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,307.894234686148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.106743372584785,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003385824322942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.107160440472408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001117322026571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.08,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.008574,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.19540229885057E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,9.19540229885057E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.39816091954023E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.79724137931034E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,7.66896551724138E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.5264367816092E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,274.853412336369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.8214134283869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,275.952825985714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.7010664313677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022570955499643,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000615796798735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022658908591591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000203212943583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.005716,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,6.89655172413793E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,6.89655172413793E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.29862068965517E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.59793103448276E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,5.75172413793103E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.1448275862069E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,243.039260244303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.5396275626707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,244.011417285281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.9380770956813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015019367499208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000414636511148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015077696921667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000136830048679,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.011432,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000114942528736,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000114942528736,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.49770114942529E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,5.99655172413793E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,9.58620689655172E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.90804597701149E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,179.410956060173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,64.1975703929636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.128599884413,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.185198229678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018669448746934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000733906624732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018741213129358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000242189186162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.14,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.017148,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00016091954023,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00016091954023,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.6967816091954E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.3951724137931E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000134206896552,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.67126436781609E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,158.549216983408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.8555132232565,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.183413851342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4323193636746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023216584774961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000957810340752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.023305372336471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000316077412448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.1,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.011432,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000114942528736,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000114942528736,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.49770114942529E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,5.99655172413793E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,9.58620689655172E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.90804597701149E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.127347506747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.1167299422798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.623856896774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.8285208809523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013141087891592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0007215504567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013190738830594,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000238111650711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.05,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.004287,Mm²,,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.74712643678161E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.74712643678161E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.74885057471264E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.99827586206897E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,4.79310344827586E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.54022988505747E-06,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.0659911009365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,58.1953474555909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.3822550653402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.204464660345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.28353140916808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004317476125505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000249483454542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004333289323725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.2329539998899E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.31,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.31,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.041441,Mm²,,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000348314606742,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000348314606742,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000139325842697,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000208988764045,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000290494382022,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,5.78202247191011E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,280.590390582479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.0426942560689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,281.712752144809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.4340891045027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.088645427095606,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003068403292666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004793359179928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00101257308658,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.07,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.007145,Mm²,,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,7.86516853932585E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,7.86516853932585E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.14606741573034E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.71910112359551E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,6.55955056179775E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.30561797752809E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,256.5993906442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,77.8000847108545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,257.625788206777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.674027954582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01833733934849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000555881605259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01840918717787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000183440929735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.06,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.005716,Mm²,,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,6.74157303370787E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,6.74157303370787E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.69662921348315E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.04494382022472E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,5.62247191011236E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.11910112359551E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,232.608390705921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,81.5574751656401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.538824268745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.9139668046612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014278259445266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000466182528047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.014334085459035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000153840234255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.14,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.017148,Mm²,,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000157303370787,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000157303370787,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.29213483146067E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.43820224719101E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000131191011236,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,2.61123595505618E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,184.626390829364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.7910964404861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.364896392681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.9510618253604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.026598458722902,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001608329721761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.026701849501767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000530748808181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.14,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.017148,Mm²,,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000157303370787,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000157303370787,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.29213483146067E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.43820224719101E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000131191011236,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.61123595505618E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.701112663491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.5427402981056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.291917114145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.1891042983748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.02142891977968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001672662910632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021511632402772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000551978760509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.12,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.01429,Mm²,,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000134831460674,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000134831460674,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.39325842696629E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.08988764044944E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000112449438202,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.23820224719101E-05,1e6 dimensionless,Own calculations,,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.431956204188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,85.7927172770872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.925684029005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3115967014388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.36260004850837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015455346750324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00122597792989,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015514594089302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Luxembourg,lu,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000404572716864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,13.7481370627,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.24,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.192,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0048,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0432,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.132,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.477427,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.235446,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.054290992051938,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.020359122019477,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04343279364155,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001085819841039,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009772378569349,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.042320556444497,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.010987654249945,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006407301533522,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.794276819413183,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.205723180586817,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.822892722347267,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.177107277652733,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.822892722347267,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.177107277652733,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,30.7309135804332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.7132766599182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.04906260094902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,36.5851526175057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.226971671611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.9950195128964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.066267067595588,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.124544021456308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.068246402961331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.046393532915416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.383146,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.99976,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.048530211544819,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.018198829329307,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.038824169235855,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000970604230896,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008735438078067,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.03237334503665,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.009902317450252,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011541280177513,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.80690194705036,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.19309805294964,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.19309805294964,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.80690194705036,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.80690194705036,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.19309805294964,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,30.36376231946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.9925487852229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.11079668515898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,36.1480590413171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.1646260899489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.0793482719272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.060725873724578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.119970699358737,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.080798631466719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044322732669636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.097446,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.28556,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.031073300917186,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.011652487843945,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.024858640733749,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000621466018344,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005593194165094,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.021544669237293,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.006360927932116,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006664663331223,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.213483146067416,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.786516853932584,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.199483086067416,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.800516913932584,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.800516913932584,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.199483086067416,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.3106200683834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.6840514736014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.1243216051613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.1322931914104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.0249385072467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.0978233126503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.039738763015104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076727429212403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.052822690130258,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034742179947376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.29,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.243153,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.649802,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.039976325337279,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01499112200148,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.031981060269823,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000799526506746,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00719573856071,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.031685162502715,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.0081150860898,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0043034801564,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.908494561091703,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.091505438908297,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.091505438908297,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.183010877816594,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.908494561091703,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.812227074235808,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.187772925764192,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.183010877816594,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete + bricks,,0,0.816989122183406,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.816989122183406,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.816989122183406,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.183010877816594,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.183010877816594,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,24.5985143553347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.5451415207046,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.05262574829892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,29.284531340026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.414840080575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.9998867721763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046119324376688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.099887495571142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.061594893697231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045229057994613,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.137444,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.385548,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.033517268405055,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.012568975651896,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026813814724044,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000670345368101,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00603310831291,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.02161157562689,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006890069382665,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008944384244059,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.896113327369792,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.103886672630208,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.103886672630208,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.207773345260417,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.896113327369792,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.792226654739583,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.207773345260417,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.213541666666667,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.207773345260417,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.792226654739583,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.792226654739583,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.792226654739583,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.207773345260417,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.207773345260417,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,22.3548550981465,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.5156377419995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.12448479647036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.6134549943434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.9486807695774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.0980462319785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.038598557353918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.082461772842152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.051579563467985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037338690742926,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.1167006996,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.90794138987572,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.81897363965432,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.019494144310732,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.007310304116525,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.015595315448586,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000389882886215,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003508945975932,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.007312277107753,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003961485059088,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.010256047936897,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.907450268601945,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.092549731398055,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.092549731398055,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.18509946279611,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.907450268601945,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.81490053720389,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.18509946279611,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.373153432920085,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.18509946279611,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete + bricks,,0,0.81490053720389,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.81490053720389,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.81490053720389,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.18509946279611,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.18509946279611,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,15.2065845478899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.0582879576695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.56958025702628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,18.1034389042629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7607927872327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.7060466310979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.021992985020203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.039358471004248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.029509011942764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017821515670724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.7514363631,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.80358536893767,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.66523185052602,Mm²,,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01311775743299,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004919159037371,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010494205946392,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00026235514866,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002361196337938,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005849983694202,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002669964316314,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005990727621623,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.811778654793183,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.188221345206817,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,0.094110672603409,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.188221345206817,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.905889327396592,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.188221345206817,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete + bricks,,0,0.811778654793183,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.811778654793183,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.811778654793183,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.188221345206817,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.188221345206817,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,13.7516594822354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.0648331605392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.72186406056727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,16.3713506136012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.4053564550921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9140663067349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016562760530306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029978562357032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.022108440478104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013574293035264,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.072,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0018,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0162,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.919121,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.814068,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.053671618047526,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.042937294438021,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001073432360951,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009660891248555,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.009875577720745,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003796040326781,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,1,0.75,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,1,0.25,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,aluminium,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,34.55,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,59.724771868287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.131775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.0433767019604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.047797534872148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.10834479745356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.043825150586593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039058524286972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.82484,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.578382,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.047595873973514,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.038076699178811,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00095191747947,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008567257315233,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.008757640811127,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008838233162388,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,34.3328365114255,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.1292825263982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.8732418668521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.5849391279531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.042226828703999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.099642123212582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.056340034749122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035117953390657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.4,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.59628,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.007022,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.03052986695637,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.024423893565096,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000610597339127,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005495376052147,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005617495519972,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004912371436398,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,29.0069120908617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.5465891920403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.5327288441708,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3210955861558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.026189520307795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062985791341347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.034989634600082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028519966319362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.727702,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.335554,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.039743312225041,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.031794649780033,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000794866244501,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007153796200507,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.007312769449407,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002430542775633,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,27.722742497071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.1099531906571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.003924942763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.5761868047295,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032155268247901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.084286750423595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.043146403491181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.038165040591804,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.51,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.627707,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.085584,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.033273224133554,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026618579306843,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000665464482671,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00598918034404,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006122273240574,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00715095089298,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.5802069116411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.3900991924245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.4532363283087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.2502369143298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.02580267617045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.067729693441709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.034645476157197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030668005190406,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.7,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.39629,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.507082,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01499549562364,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011996396498912,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000299909912473,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002699189212255,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00275917119475,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00723632442889,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,18.3685808244057,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.8681465442263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,21.867795471455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.8442967552257,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.011806928866038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027822649485939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015865218189823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012598095687233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.43,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.319151,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.421378,Mm²,,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.009246943764239,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007397555011391,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000184938875285,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001664449877563,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00170143765262,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003545506111619,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,17.5845614934597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.0006992154781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.52899970972573,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,20.9344204579638,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.9987166047685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.2846136034853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.008325901082304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02233332863402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011103625073078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010112531205484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.124307040868583,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.004114768340626,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.099445632694866,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002486140817372,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.022375267356345,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.042,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.0291963665,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.20464140190905,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0208520449543,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000619374004412,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.0002,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00049549920353,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.23874800882496E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000111487320794,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.000209269788771,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000113964816812,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00029613939883,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,1,0.75,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,1,0.25,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,aluminium,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,14.0717952330124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.2148579061718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,16.7524722249012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3036876599146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002992669779416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000796857934982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00383973887674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00036081727296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.0431874128,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.20863864383696,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.03084445022176,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000934337571305,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.0003,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000747470057044,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.86867514260994E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000168180762835,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.000315687492202,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.00017191811312,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000446731965983,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,15.3086533154529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.0945932152476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,18.2249517720467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7772318078641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003424186348445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001483451286364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004411106531888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000671706742465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.0249201068,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.20341967451276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.01779794027656,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000543433960816,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000434747168653,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.0868679216322E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,9.78181129468978E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.000183611694034,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,9.99918487901622E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000259830417992,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,11.6927020908316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.1378598793527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,13.920161839135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.2496229533709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002479670398307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000874552695451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003182855264061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0003959974605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.0109050898,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.19941558415586,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.00778841513516,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000233013112238,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000186410489791,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.66026224476889E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.194236020292E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,7.87288527313669E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,4.28744126518738E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000111409846855,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,11.0844112306149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.4508398785843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,13.1959915700471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.391340297023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002185453791203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000385143669757,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002785181166388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000174393053666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.0110751771,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.19946417809747,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.00790989148482,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.000244044271501,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000195235417201,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.88088543002783E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.39279688702505E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,8.24559842422327E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,4.4904145956256E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000116684141303,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,10.4761203703983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.9292065465317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,12.4718213009591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.1551447242696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002073459524253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000387024714221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002643773570544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000175244790599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.256297,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.157124,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004498648687092,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0012,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003598918949674,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.9972973741841E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000809756763677,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.001519972187719,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000827751358425,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002150925140948,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,9.89486465952454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.6186599100909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,11.779836377164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.5809292072892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00442442639515,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005753670319713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.005978847131442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002605261920766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.247726,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.135698,Mm²,,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003870813668751,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003096650935001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.74162733750237E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000696746460375,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.0013078436503,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00071222971505,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001850740303401,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,8.62421264040527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.4486652487522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,10.2671251484025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.598355624635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003757279146066,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004674614976925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.0050803284795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002116665661552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,2.6088529097,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.025692959131417,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.5508036335,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.35366459809095,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.4005259550457,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005424520176026,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004339616140821,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000108490403521,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000976413631685,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.002111286655725,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000998111712389,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002315121807912,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,aluminium,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,14.0717952330124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.2148579061718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,16.7524722249012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3036876599146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010028859181641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015306042459805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013687705149545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0069305760258,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.5368125872,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.34966735616304,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.39053354977824,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005286731119596,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004229384895677,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000105734622392,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000951611601527,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.002057657544448,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000972758526006,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002256315049142,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,15.3086533154529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.0945932152476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,18.2249517720467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.7772318078641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010247023004536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018782552213491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013938431660447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008504739642269,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,0.3550798932,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.29774632548724,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.26074005972344,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003496959583446,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002797567666757,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.99391916689136E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00062945272502,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.001361057543259,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000643440563354,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001492461476833,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.82,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,11.6927020908316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.1378598793527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,13.920161839135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.2496229533709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006722208987924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012812208519625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009149123015849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005801368017686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,0.4190949102,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.31603541584414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.30645958486484,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004127403411636,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003301922729309,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.25480682327296E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000742932614095,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.001606433649984,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000759442227741,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001761527533912,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,11.0844112306149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.4508398785843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,13.1959915700471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.391340297023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.007363934069128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015154683860409,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010077065290185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006862040851993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,0.3989248229,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.31027282190253,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.29205410851518,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003928760848559,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003143008678847,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.85752169711718E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000707176952741,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.001529119642647,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000722891996135,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001676749209776,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.06,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,10.4761203703983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.9292065465317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,12.4718213009591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.1551447242696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006930480090747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014289975798303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009492057428079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006470501041471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,0.2067006996,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.25535438987572,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.15476763965432,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.002035665793005,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0005,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001628532634404,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.07133158601021E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000366419842741,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.000792304920034,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000374562505913,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000868798367058,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,9.89486465952454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.6186599100909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,11.779836377164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.5809292072892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004383624905226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005667383561589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.0059212434635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002566191276688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.1414363631,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.23670836893767,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.10815585052602,Mm²,,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.001392918199149,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0003,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001114334559319,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.78583639829848E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000250725275847,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.000542140043903,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000256296948643,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000594481206603,1e6 dimensionless,Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,8.62421264040527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.4486652487522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.3176127988713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,10.2671251484025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.598355624635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,14.0938590832582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003293544959665,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003725824689465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004423698618337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00168705341939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.0199,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.03283461538462,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.03283461538462,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.750625961538461,Mm²,,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.009359102048409,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005138564671424,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004356320919625,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004986029944435,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.008441254336521,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000917847711888,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,38.4775147052256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,104.49692123334,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.33260413952826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.4878992636222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,64.788091164671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.49890620929239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.044215772631591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.088438101978585,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.072284795312616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.058631623226723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.084,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.084,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.795,Mm²,,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010132293599207,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.005393122984893,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004646132364575,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005482793429503,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.009176697456043,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000955596143163,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.9262908789411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,112.61656713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.42273734806212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.5283799502527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,69.8222716205998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.63410602209318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.049158346598072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.08953017086835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.080392134794023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.055508705938377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.614,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.614,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.4425,Mm²,,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005492789905657,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003054776303251,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002528574635368,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002960379666783,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.004965894203747,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.00052689570191,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.787685844644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,113.312706394383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.45614765161287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.2996816436627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,70.2538779645172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.6842214774193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027779713766702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.050140872579514,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.045426116516344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031087340999299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.404,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.404,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.285,Mm²,,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003535112542262,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002009983105071,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001647280216553,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001881564342232,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.003184283835022,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000350828707241,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,37.8015427750115,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,106.982264307814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.21857176517588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.3725455787689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,66.3290038708446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.32785764776383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016976126274236,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030489945327727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027754962903519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018903766103191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.334,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.334,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.2325,Mm²,,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.00380238488974,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001661718705677,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00179421441403,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001997523500234,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.003424034891574,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000378349998166,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.6426251821037,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.836710134772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.22366640223945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.060331550471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,64.3787602835589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.33549960335917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014985341389171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024142035106335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.024514207605379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014968061765928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.364,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.364,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.255,Mm²,,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004655736121215,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001810974876846,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002205123841936,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002443908628053,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004190282664335,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00046545345688,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,5.42101086242752E-19,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,38.7411424864143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.887720276607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.29033241471971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.9228851025837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,64.4103865714963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.43549862207957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.015663456864013,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026491368670535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.025610451675778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016424648575732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.167,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.167,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.10725,Mm²,,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.002378127893103,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000830859352839,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001143866092813,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001232290138165,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002129979255209,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000248148637894,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,1.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,35.3088851964024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.3795637049675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.29584750319143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.259660574064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,55.4153294970799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.44377125478714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006613990360832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009585958207358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010805473115418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005943294088562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.009,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.242,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.242,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.1725,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004224572371887,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001672482941439,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00206328114643,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002161291225457,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.003787329131397,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.00043724324049,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,38.3261825520076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.795201332733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.2382012108126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,72.4130248262944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01024249810793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020147172229897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016754987588533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022491246782536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.194,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.194,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.1425,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003386640661761,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001244071056356,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001654035299204,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001732605362557,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.003036123353269,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.000350517308492,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.6265750738859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.619537239442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.0338488719117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,67.3441130884538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.008657204384527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015478284056621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.014168039911441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009596536115105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.114,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.114,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0825,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00199008781155,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000739733387674,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000971958887161,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001018128924389,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.001784113723055,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000205974088495,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.5444181981045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,109.705732611836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.8982900268725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,68.0175542193383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005077857311192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009050722940476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008310095517976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005611448223095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.094,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.094,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0675,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001640949598997,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000648578645961,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00080143978415,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000839509814847,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.001471111315501,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000169838283496,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.4622613223232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,100.929274002889,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.7627311818332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.5761498817912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004179282405011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006812725995195,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006839441492161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004223890117021,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.124,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.124,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.09,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002164656917826,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000930693732057,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001057218438666,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00110743847916,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.001940614926831,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000224041990995,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,37.9975550488822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.1528153939422,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.6959658306556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.1347455442442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005207472360618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008293753385455,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008517963064836,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005142127098982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.174,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.174,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1275,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003037502449208,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001345501552302,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001483516196193,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001553986253015,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002723120945715,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000314381503493,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,34.7523584555182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.8590620084874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.341391451605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,51.9926184452622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006742595395557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010692030406082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011020929649025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006629058851771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.114,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.114,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0825,Mm²,,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00199008781155,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00090852868421,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000971958887161,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001018128924389,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.001784113723055,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000205974088495,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,1.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,34.5469662660647,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,82.9443887430764,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.0024943390068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,51.4255210207073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00439414779094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006842912071304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007181974809559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004242605484208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.009,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.234,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.234,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.1725,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004084917086866,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002045614148524,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001817788103655,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002267128983211,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003778548305351,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000306368781515,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,50.0129981319071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,99.7177256533612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.5214469176466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,61.8249899050839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.012806183899387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017201307675205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.02096473208351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010664810758627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.324,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.324,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.24,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005656039043353,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002875950682697,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002516937374292,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003139101669061,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.005231836115102,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000424202928251,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,48.955228356222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,124.647157066701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.7761267877662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,77.2812373813549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.017388921837983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.029915317696008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.028462606855086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018547496971525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.164,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.164,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.12,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002862933342932,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001447507547958,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001274005337605,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001588928005327,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002648213342212,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00021472000072,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.8974585805369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,125.893628637368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.0308066578858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,78.0540497551685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00862832569947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015107235436484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.014120766030287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00936648597062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.084,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.084,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.06,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001466380492721,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000730139162979,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000652539319261,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00081384117346,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001356401955767,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000109978536954,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.5444181981045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,135.965118928358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.8982900268725,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,84.2983737355819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003801730941751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008157907135701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006213456081922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005057902424135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.074,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.074,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0525,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001291811386445,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000603933562418,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000574856066968,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000716955319477,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001194925532461,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,9.68858539833621E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,53.1760378494897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,146.036609219347,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.740462451658,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,90.5426977159954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004283883779078,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007666921984016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007016079688746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00475349163009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.074,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.074,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0525,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001291811386445,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000596381200157,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000574856066968,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000716955319477,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001194925532461,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.68858539833621E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.1015767360102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,147.496975311541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.3176016144168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,91.4481246931553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004130373656681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007743591203856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006762787986791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004801026546391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.014,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.014,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0075,Mm²,,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000244396748787,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,8.81238060025638E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00010875655321,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000135640195577,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000226066992628,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.83297561590144E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,1.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.2068208986971,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,116.795201332733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.71428348940313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,74.5912544828502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,72.4130248262944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0714252341047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000698895461433,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000875964009995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001143277516037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000543097686197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.0006,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.244,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.244,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.18,Mm²,,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,6.94493546849095E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,6.94493546849095E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.26981703349094E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,5.79207618072146E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,1.1528592877695E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,20.4159836316697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.1150370402109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.6863729922549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,50.2913229649308,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005403756588039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014600706667238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008852859882978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009052438133688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.184,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.184,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.135,Mm²,,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.39627078282651E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.39627078282651E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.05949027000876E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,1.16448983287731E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,2.317809499492E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,20.5392189453417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.4153903738299,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.8897112598138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,54.8175420317745,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004097639282139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011936077700467,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006713341366099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00740036817429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.114,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.114,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0825,Mm²,,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.59021704269322E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.59021704269322E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.20665669199562E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,1.32624101360615E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,2.63976029087075E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,20.1284345664349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.2995442775682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.2119170346175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,55.3657174520923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002491925353434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007367212402899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004082084261237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004567671689798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.094,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.094,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0675,Mm²,,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.59866644989322E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,2.59866644989322E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.97186810217898E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,2.16728781921095E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,4.31378630682275E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,20.9500033242485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,77.2441058000965,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.5675054850101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.8913455960598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002131972930101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005213977141507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003493354442023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003232665827734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.054,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0375,Mm²,,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,4.4141689373297E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,4.4141689373297E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.34947138964578E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,3.68141689373297E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,7.3275204359673E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,21.7715720820622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.1886673226248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,35.9230939354026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.4169737400274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001269115119576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002444575024598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002080022413228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001515636515251,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.034,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.034,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0225,Mm²,,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.77929155313351E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.77929155313351E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.10892643051771E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,2.31792915531335E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.61362397820163E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,19.1630912760038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.3150807477923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,31.6191006054063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.0753500636312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00071038413529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001672089316825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001163307968442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001036695376432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.01,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.01,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0045,Mm²,,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.17438692098093E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,8.17438692098093E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.20272479564033E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,6.81743869209809E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.35694822888283E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,1.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,16.4519143752187,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.384892429936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.7305597619328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,27.1456587191109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.7786333065603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.59583964289919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000181824741372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000303232015935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00029741498362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00018800384988,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.0003,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.084834615384615,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.084834615384615,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.060625961538462,Mm²,,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000101059914168,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000101059914168,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.29756070070406E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.80843071612933E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,8.42839684163905E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,1.67759457519434E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,52.4982436242934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.795201332733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,86.6221019800841,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,72.4130248262944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00537503622583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007080821383875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00873060458468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004390109258003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.064,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.064,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.045,Mm²,,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,7.62405119354888E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,7.62405119354888E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.99652763565832E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.62752355789056E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,6.35845869541977E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,1.26559249812911E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.5534395528077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.619537239442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.0631752621327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,67.3441130884538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003994508410931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004887879175775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006486675636104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00303048508898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.044,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.24153519556485E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,5.24153519556485E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.7476127495151E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.49392244604976E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,4.37144035310109E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,8.70094842463766E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.1478028682425,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,109.705732611836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.9938747326001,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,68.0175542193383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002904376518394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003291171978355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004720540276522,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00204052662658,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.015,Mm²,,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.85901919758083E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,2.85901919758083E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.49869786337187E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.36032133420896E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,2.38442201078241E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,4.74597186798418E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,58.7421661836773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,97.0895733614748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.9245742030675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,60.1955354841144,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00167047009324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001456343600422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002717176938121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000902933032262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.014,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.014,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0075,Mm²,,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.66776119858882E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.66776119858882E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.74240420300258E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.93520778288559E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,1.39091283962307E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.76848358965744E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.2338334043854,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.4734141111137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.685825117236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.3735167488905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001023324228813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000633550605833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001665677393369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000392801375617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.014,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.014,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0075,Mm²,,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.66776119858882E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.66776119858882E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.74240420300258E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.93520778288559E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.39091283962307E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.76848358965744E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.0579502301593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,95.4549579455585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.1456178797628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,59.1820739262463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000950861864374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000715912184592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001546114492045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000443865554447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.007,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.007,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00225,Mm²,,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.33880599294409E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,8.33880599294409E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.37120210150129E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.9676038914428E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,6.95456419811537E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.38424179482872E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,1.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.3685865822996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,88.071500123615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.860754367992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.7581678607944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,54.6043300766413,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.291131551988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.000435605386652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000198160875278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.000707345095889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000122859742672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.104,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.104,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.075,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000229074889868,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000229074889868,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000109566519824,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000119508370044,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00019104845815,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,3.80264317180617E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,33.5610837566883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.795201332733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,55.3757881985358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,72.4130248262944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004055111937831,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008759640099955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006606220813351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005430976861972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.144,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.144,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.105,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00031718061674,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00031718061674,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000151707488987,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000165473127753,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000264528634361,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.26519823788546E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.8524935926794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,113.291345292751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.8066144279209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,70.2406340815055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006088733391841,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011895591255739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009929113949364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007375266578558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.084,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.084,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.06,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000185022026432,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000185022026432,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.84960352422907E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.65259911894273E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000154308370044,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.07136563876652E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.1439034286704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.424258745678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.2374406573061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,70.9430404223206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003828239571464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006865455524741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.006248172540397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004256582425339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.054,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0375,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000118942731278,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000118942731278,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.68903083700441E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.2052422907489E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,9.91982378854625E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.97444933920705E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,39.6201533455641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,101.265468989925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.3732530201808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.7845907737537,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002432728648596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003797455087122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003970016214993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002354422154016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.034,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.034,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0225,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,7.48898678414097E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,7.48898678414097E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.58198237885462E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.90700440528634E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,6.24581497797357E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.2431718061674E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,38.5726531793517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.1066792341723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.6448777459303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,54.6261411251868,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001496103032354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001982400282769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002440875079745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001229088175317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.024,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.015,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.2863436123348E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.2863436123348E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.52845814977974E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.75788546255507E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,4.40881057268722E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.77533039647577E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,36.4776528469269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,99.5605475346147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.1881271974293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,61.7275394714611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001005792720742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001493408213019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.001640008631362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000925913092072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.01,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.01,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0045,Mm²,,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.20264317180617E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.20264317180617E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.05352422907489E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.14911894273128E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.83700440528634E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.65638766519824E-06,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,1.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,5.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,1.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,30.8293676369579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,91.8030078272116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.43037718399602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,50.8684566009805,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,56.9178648528712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.14556577599402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00036259744821,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000413113535222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00059014022377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000256130391838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.124,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.124,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.09,Mm²,,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000650028430935,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.000650028430935,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000260011372374,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000390017058561,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.0005421237114,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000107904719535,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.0758898227232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.795201332733,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.6752182074933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,72.4130248262944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006333185872574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010511568119946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010375390359564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006517172234367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.174,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.174,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.1275,Mm²,,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000682230057589,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.000682230057589,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000272892023036,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000409338034553,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000568979868029,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00011325018956,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.3313463583559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,121.17502138271,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.0967214912872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,75.1285132572804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.008931339290651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015449815226296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01463235707593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009578885440303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.094,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.094,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0675,Mm²,,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000386429202361,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.000386429202361,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000154571680945,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000231857521417,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000322281954769,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,6.41472475919678E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,5.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.5868028939886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,125.554841432688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.5182247750811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,77.8440016882664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004848989312747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008474951796706,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.007944457889926,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005254470113958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.054,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0375,Mm²,,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000254262862791,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.000254262862791,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000101705145117,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000152557717675,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000212055227568,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,4.22076352233794E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,47.1118334558775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,134.314481532643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.7345252021979,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,83.2749785502385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002759941255537,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005036793057474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004521517734298,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003122811695634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.034,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.034,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0225,Mm²,,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000210207416268,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.000210207416268,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.40829665072691E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000126124449761,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000175312985168,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,3.48944311005167E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,46.1618945796555,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,139.687060793948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,76.1671260564316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,86.605977692248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.001705442868732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003142958867864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.002793589965454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001948634498076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.044,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.03,Mm²,,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000229088321921,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.000229088321921,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.1635328768401E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000137452993153,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000191059660482,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.80286614388864E-05,1e6 dimensionless,Own calculations,,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,5.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,44.2620168272114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,137.644134560467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.99818979481025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.0323277648988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,85.3393634274898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.99728469221538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.002123449091369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004129324036814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003477302948113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Malta,mt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002560180902825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,674.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,7.42,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.69,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.9714,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.41892,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02968,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,6.57862068965517,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,0.841379310344828,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,153.2,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,139.27148,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.774936,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.68613851105804,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.156797246985182,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.12971280240889,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.549681154604922,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006744554044232,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.45096984113964,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.212561029600923,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.137833786894383,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.88682930809399,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.99272519582245,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.78506201044386,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.01786292428198,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.907637075718016,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.092362924281984,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,157.806746232439,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.0506939198991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9095659688913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,166.028477711149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.21828294513339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.6764828939923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,25.6409246082103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.079465022303208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,27.0566689923383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02724855614777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,144.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,130.968658,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.558555,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.58565258020974,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.147452867970987,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.06238722874053,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.516922741148375,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006342610320839,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.34951496764652,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.199777048036845,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.143733815137349,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.66526757826057,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.90095439716804,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.33674082043451,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.14481189699452,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.951134864996182,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.048865135003818,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.901783855070452,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.098216144929548,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.543711945723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.0166520464162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9419949032229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.960139338095,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.86370998671611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.7113083265711,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,24.6064863675773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.071230357223035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,25.9636795532125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024424889491779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,90.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,82.352134,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.291553,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.997265081507632,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.092737588442084,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.668167604610113,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.325108416571488,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003989060326031,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.836399246883484,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.122969829464472,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.082748122503502,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.4444663944377,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.29853327447302,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.843836221167642,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.12338593974175,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,0.032777839090608,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.12338593974175,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.843836221167642,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.032777839090608,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.421918110583821,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.578081889416179,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.421918110583821,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.084383622116764,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.578081889416179,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.983611080454696,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.998587365978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.0656567367848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.2630455055598,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.709313767746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.88051369504351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0560845684207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.3864740518325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04598151589215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.1839360951941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015767061799418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,94.48,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,85.871512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.383272,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.03985878932613,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.096698458845692,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.69670538884851,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.33899396532032,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004159435157305,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.937058749140629,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.128352287650124,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.022320214481486,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.16176121930567,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.983096951735817,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.116215071972904,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.883784928027096,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.116215071972904,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,0.883784928027096,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.425116426756986,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.574883573243014,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.425116426756986,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.850232853513971,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.574883573243014,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.1704510342157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.7606061107583,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.2276058762013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.337231533098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.204911835379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0180259504526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.8049407792136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.070927619246799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.41777892144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024321080639727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,85.93,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,78.096142,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.180637,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.945756411587582,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.087947698651675,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.63365679576368,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.308316590177552,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00378302564635,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.834846159124501,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.116143365021462,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.033276281120662,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.98462003956709,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.358812987315257,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.029675317118585,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.970324682881415,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.029675317118585,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.029675317118585,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,other,,0,0.970324682881415,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.417665541720005,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.582334458279995,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.417665541720005,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.835331083440009,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.582334458279995,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.6552926829542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.6143635944221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.3101670083117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,64.8675334317361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.1547652765273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.1066883502259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.90401314344377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.06457817698545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.30925183200952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022143856888311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,66.04,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,60.008176,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.709244,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.72684456442737,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.067590667042437,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.486985858166338,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.236951328003322,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002907378257709,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.628946825701381,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.087692222183001,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026515377395288,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.90107056329497,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.310580708661417,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.392867958812841,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.607132041187159,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.392867958812841,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.785735917625681,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.607132041187159,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.7121855171581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.8522708203124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.5849419522618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.7811903826021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.89344366428514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.4017691625339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.00664538438564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.049315570785994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.25078586146243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016910309222517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,39.84,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,36.181896,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.126698,Mm²,,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.438484061883501,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.040775472061943,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.293784321461946,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.142945804174021,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001753936247534,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.377171416029509,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.053077621788761,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.019561316323773,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.269623493975904,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.323920682730924,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.676079317269076,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.323920682730924,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.647841365461847,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.676079317269076,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,12.6859826914332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,13.4467113513464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.348927054836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,13.3469223896569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.61087732237668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.2222127641884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.4589041602639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015150382786139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.5574499143479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005195066257367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.81,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.2227,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.56806,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01924,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,4.81,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,139.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,126.43587,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.367533,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.61061729726331,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.5,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.07911358916642,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.525061238907841,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006442469189053,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.3,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.190052841077071,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.120564456186243,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.915,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.81,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,152.215245280241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,22.4939202888052,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.145659559342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.7131652670313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,22.4989369441242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.075749018871921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.7420572044739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025974338571182,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,129.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,118.133048,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.151152,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.50414707375036,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.4,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.00777853941274,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.490351946042618,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006016588295001,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.2,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.177489354702542,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.126657719047818,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.68,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,155.704592935194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.4035878108529,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.816802227117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.33929026034146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.4337058301605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.067445958537345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,22.6166705833168,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023127219182456,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,76.46,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,69.516524,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.88415,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.870046646874413,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.8,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.582931253405856,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.283635206881058,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003480186587498,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.7,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.102665504331181,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.067381142543232,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,0.1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.368650453702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.0699104251303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.62975714234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.56777228477719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.4774231607906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041583021727509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.1143970862494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014258818150363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,80.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,73.035902,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.975869,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.914816083085844,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.9,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.612926775667515,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.298230043085985,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003659264332343,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.8,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.10794829780413,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.006867785281714,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.07,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.96,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.7961942898146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.3012549320028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.839276012314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.4190003161838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.94914603672678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.065798917281242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.45637070639019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022562448735738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,71.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,65.260532,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.773234,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.814180801436275,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.8,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.545501136962304,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.265422941268226,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003256723205745,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.7,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.096073334569481,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018107466866795,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.8380864288788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.4286425823643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.9556507318234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.4626815414927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.58456247865425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.059276805600896,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.91213122110501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020326016640547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,51.89,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,47.172566,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.301841,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.580602900987319,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.58,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.389003943661503,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.189276545721866,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002322411603949,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.5,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.068511142316504,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012091758670815,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,34.8693288148914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.6515709704969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,36.6860208461473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.5391236857834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.85898975484296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.043808994803803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.03441080714112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015022104318224,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,25.81,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,23.455414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.719295,Mm²,,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.289518384170201,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.28,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.193977317394035,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.094382993239486,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001158073536681,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.034163169332084,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005355214838117,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,12.0014241142666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.2673821171773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,23.3978423578106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,12.6266983106199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.60678532798008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.1269429080528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.875396682444799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013858931619975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.934690832785534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004752227652489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.2285304767323,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.078334900063183,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.49311541941064,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.726500935414731,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008914121906929,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.76862068965517,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.459909787077131,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.52,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.913088,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.154524,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.075521213794727,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050599213242467,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024619915697081,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000302084855179,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.059935631403649,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.008911503227778,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0066740791633,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.72,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,212.753616013574,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,6.86831748199101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.838079407881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.35514606457472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.44670791623088,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001061319890587,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.52619455862736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000363926590482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,7.04,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.385976,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.166848,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.081505506459379,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.022,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054608689327784,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026570795105758,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000326022025838,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.064684924235926,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.009617649762207,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007202932461246,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.215,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.025,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,215.156315609891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,7.2823273456659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.365959653166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.49711004682884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.57770799403194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00121504175297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.66434778391431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000416637817093,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,11.18,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.150892,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.264966,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.127218434633219,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.085236351204257,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.04147320969043,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000508873738533,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.100963912294246,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.01501177528672,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011242747052253,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,194.630741168992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.23560465120894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.771002783897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.16688883489954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.29920470678469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002447121222012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.42604620580607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000839117867028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,10.98,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,9.969012,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.260226,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.125042706240291,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.083778613180995,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.040763922234335,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000500170824961,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.099237196733935,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.014755039336354,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011050470170002,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.649182078579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,9.66023015241395,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.518204464873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.31249291926274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.44074248127817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002513843051642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.52273192779972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000861996782408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,11.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,10.53284,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.27492,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.131575610151307,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.088155658801376,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.042893648909326,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000526302440605,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.104421881951923,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.015525921997854,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011627806201529,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.8736011576914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,10.2653214916311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,74.5661157780071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.5199787394803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08218341841458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002822142184479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.14588306646887,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000967712555058,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,13.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,11.869658,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.309759,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.146241663440051,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.097981914504834,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.047674782281457,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00058496665376,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.116061249487113,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.017256516285926,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012923897667012,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.07,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.315,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.4716084345163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,11.2525757819327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.4658792339546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.85850823562473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.06039060766919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003485586621636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.1238822038331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001195207652559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,13.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,12.060632,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.35313,Mm²,,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.1489656777133,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.099807004067911,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048562810934536,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000595862710853,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.118223099214045,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.017577949970169,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.013164628529085,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,13.9453167524929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.73883448277231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,14.6718677552978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,0.939146344142623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.55248862626607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000967164620901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.589651008277372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000331640748507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,23.76,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.381469523267697,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.301379310344828,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.080090212922869,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,7.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.922522,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.252879,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.115226146576901,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.077201518206524,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03756372378407,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000460904586308,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.091034209735987,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.013596685296074,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.01059525154484,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,212.753616013574,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,6.86831748199101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.838079407881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.35514606457472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.69359005158969,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001736853256528,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.78663949979612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000595566981664,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,7.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.449634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.240555,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.107373250610979,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.071940077909356,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.035003679699179,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000429493002444,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.084830043410599,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.012670043572096,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009873163628285,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.215,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.255,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,215.156315609891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,7.2823273456659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.365959653166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,2.49711004682884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.59343008875411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001751800254637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.68093315946435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000600692307315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.684718,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.142437,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.044852117343827,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.030050918620364,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014621790254088,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000179408469375,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.035435334589238,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.005292549846572,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004124232908018,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.07,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,194.630741168992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,9.23560465120894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.771002783897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.16688883489954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.608475107452018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001315491819704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.642050293231822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000451082144977,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.17,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.866598,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.147177,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.047872461946105,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.03207454950389,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01560642259443,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000191489847784,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.037821552406695,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00564895050964,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00440195902977,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,112.649182078579,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,9.66023015241395,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.518204464873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.31249291926274,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.414654013282044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001421763693142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.438257290606538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000487522770378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.55,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.30277,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.132483,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.038509393679043,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.008,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025801293764959,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012554062339368,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000154037574716,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.030424277172578,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.004544108454127,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003541008052338,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.8736011576914,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,10.2653214916311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,74.5661157780071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.5199787394803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.236998011921676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001359980587176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.250954282867362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000466337343343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.965952,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.097644,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.016309860852301,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010927606771041,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00531701463785,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,6.52394434092023E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.012885576214268,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001924563580571,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001499721057461,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.285,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.4716084345163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,11.2525757819327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.4658792339546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.85850823562473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.08676807084955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001098746509651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.091970008315922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000376760178159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.75,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.66585,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.054273,Mm²,,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011326292258542,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007588615813223,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003692371276285,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.53051690341683E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.008948316815464,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001336502486508,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00104147295657,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,13.9453167524929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,2.73883448277231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,28.9381997583447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,14.6718677552978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,0.939146344142623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.0767327204863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.030989138978406,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000148644763884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03307681268523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.09702895356526E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.194,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,91.1194394655369,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,91.1194394655369,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,18.82368,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.471242286515447,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.073991025288472,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.09424845730309,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.376993829212358,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.431264551903164,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.039977734612284,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,193.717388737507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.07156704182952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,222.774997048133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.07156704182952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.2046576620181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.982862950033259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.7323706434914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.363659291512306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,13.3760192276357,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,13.3760192276357,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.308076,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.07053243050412,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01086162714275,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014106486100824,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.056425944403296,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.064201014644623,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.006331415859497,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.21430643318377E-17,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,192.698385994234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.6644747099456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.07279531113288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.603143893369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.9658556426799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.07279531113288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.65876714304044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.187450388840578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.04539774046942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.069356643871014,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,20.5474987779045,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,20.5474987779045,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.051124,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.133101811885011,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.016685029128892,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026620362377002,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.106481449508009,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.119885745071345,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.013216066813666,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,164.407022615252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.3686779400782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.87285351931388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,189.06807600754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.1164108378289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87285351931388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.49882554677673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.2746229339914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.0055485112166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.101610485576818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,35.6281570800065,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,35.6281570800065,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,7.916472,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.223486395248651,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.028930861372182,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04469727904973,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.178789116198921,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.201468530193473,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.022017865055178,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.374346566746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.7761840309438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.87865324064414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.230498551758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.2671880914492,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87865324064414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.63826273551993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.433634127147813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.45258530868644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.090444627044691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,40.549128238553,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,40.549128238553,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,8.851464,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.246434394276196,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.032926800148491,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049286878855239,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.197147515420957,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.222750414778364,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.023683979497833,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-3.12250225675825E-17,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.327557295999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.0770379160277,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.96998508551803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.926690890398,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7485040289302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.96998508551803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.81059042229761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.496363882340354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.64586733202001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.183654636465931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,33.2654391396448,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,33.2654391396448,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,7.467552,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.147759587065511,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02701228149614,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029551917413102,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.118207669652408,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.133507481682075,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.014252105383435,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,156.375638257275,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.7743986484912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.02694453781178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.831983995867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.2665274999417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.02694453781178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.40239323409109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.409030670176338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.18267887569667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.151341347965245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,4.42398566074629,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.42398566074629,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.605276,Mm²,,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.007141359884309,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003592375423072,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001428271976862,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005713087907448,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.006393305605777,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000748054278532,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.2026185662652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.9021039600452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.9461571664771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.433011351205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.4637784652167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.9461571664771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.416512833818471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.080106649836566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.475043901785085,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.029639460439529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.59931562652762,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.59931562652762,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.61766,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.072632899637829,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01067688122123,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014526579927566,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.058106319710263,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.065115394525313,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.007517505112515,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,156.471071184769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.941731862485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.06980357737782,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074464784768483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10469387515319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031251970364339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.7905540166205,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.7905540166205,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.342108,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.019707063208574,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003130008618461,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003941412641715,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015765650566859,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.017667382166486,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002039681042087,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,157.303331141447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.5591841516075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.898830812665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9668981360948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.291753803555987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016612485371738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.334002820266453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006146619587543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.53022649503015,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.53022649503015,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.003112,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.093884748050379,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.015798424697109,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.018776949610076,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.075107798440303,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.084167676627164,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.009717071423214,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,158.135591098126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.0447759931236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.855929762844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1465671174557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.39701891151404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.098242179329138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.59935877286291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.036349606351781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,13.8096789962522,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,13.8096789962522,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.006216,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.151991067760641,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.025527688470176,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.030398213552128,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.121592854208513,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.136259992247415,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.015731075513226,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,159.800111011482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.1211939136737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.770127663204,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6948417480593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.28463601292252,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.135644055082388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.61565424841762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015188300380484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,14.2088968551409,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,14.2088968551409,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.082068,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.156384909837498,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.026185719433815,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0312769819675,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.125107927869998,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.140199071669317,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.016185838168181,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,163.129150838194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.1976118342238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.598523463923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2431163786628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.39798352130428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.126973841110682,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.74566631305327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.046980321210953,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.40589864754766,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.40589864754766,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.789488,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.081510254038008,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.013399192281079,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016302050807602,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.065208203230406,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.073073942745074,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008436311292934,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,169.787230491619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.4898267691437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,195.255315065362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8712359045832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.29917547414735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.067087595125461,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.48778952724766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024822410196421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.244419097278801,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.244419097278801,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.428796,Mm²,,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002690107393994,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000373885278131,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000538021478799,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002152085915195,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002411681278715,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000278426115278,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,166.377599384185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.0819170514609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.334239291813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.7203093090405,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.042043699397365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015900577703998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.0481435787947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005883213750479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.035,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,33.6565096952909,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,33.6565096952909,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,6.777144,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.370427788152926,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.018007719071751,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.074085557630585,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.296342230522341,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.342645704041457,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.02778208411147,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,232.226875062657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,267.060906322055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.03965534818576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.353862993030067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.21204725899377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.130929307421125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.13883004725436,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.13883004725436,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.16874,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.045552485204959,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002169859158601,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.009110497040992,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.036441988163967,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.042136048814587,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.003416436390372,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,232.226875062657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.2677206338811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,267.060906322055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.149056634536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.988657689876147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076280995813642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.13282982511954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028223968451048,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.00635489652925,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.00635489652925,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.953568,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.033088320946122,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001353614672567,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.006617664189224,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.026470656756898,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.030606696875163,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.002481624070959,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,237.248331784513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.9203978402199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,272.83558155219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.3905472008813,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.733235429752082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062859581927703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.840223332345147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02325804531325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.57275541795666,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.57275541795666,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.441188,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.061334448583055,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002559675771288,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.012266889716611,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.049067558866444,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.056734364939326,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.004600083643729,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,242.26978850637,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,71.1940296674374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,278.610256782326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.3417909769518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.38715146383955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.102603981228355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.58966800531546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002963473054491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,7.43848786051817,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,7.43848786051817,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.79568,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.081868935023874,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003560599694453,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.016373787004775,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.065495148019099,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.075728764897083,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.006140170126791,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,232.226875062657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.467661494655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,267.060906322055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.2930347530224,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.77685919460024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.137311450392722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.03597171325619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.050805236645307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.17353755906795,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.17353755906795,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.365336,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.056940606506199,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002372412184789,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.01138812130124,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.045552485204959,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.052670061018234,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.004270545487965,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,346.083756733793,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,77.2323381096016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,397.996320243862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.5759651005526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.82486496602916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.105448091585211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.093436563136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039015793886528,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.268861007006681,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.268861007006681,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.051084,Mm²,,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002959118133393,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000158806544755,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000591823626679,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002367294506714,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002737184273389,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000221933860004,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.16840434497101E-19,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,318.471944092867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,366.242735706797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.64683528261545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.087411762419675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002667308992689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.100255465558503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000986904327295,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.028,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,5.36092553364836,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.36092553364836,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.018584,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01113932649523,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01113932649523,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002227865299046,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.008911461196184,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.009290198297022,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001849128198208,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,104.14873200888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.771041810212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.571414134452001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.053184524763313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.655164173960527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019678274162426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.928792569659442,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.928792569659442,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.176472,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001979438121424,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001979438121424,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000395887624285,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001583550497139,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001650851393268,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000328586728156,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.14873200888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.9134523927443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.771041810212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.0579773853154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.098998801409617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010043630770652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.113508686674012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003716143385141,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.10803324099723,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.10803324099723,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.210528,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002267134299762,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002267134299762,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000453426859952,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00181370743981,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001890790006002,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000376344293761,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.2402893378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.4825869166717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.47633273847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.2685571591685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.122637414788486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012101694058393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.140627490578702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004477626801605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.84943783607626,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.84943783607626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.351396,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003756749772256,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003756749772256,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000751349954451,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003005399817804,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003133129310061,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000623620462194,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.33184666672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.722437682921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.181623666728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3973019426808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.212263354145714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017472265712028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.243425969258976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00646473831345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.969529085872576,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.969529085872576,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.184212,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001520059300876,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001520059300876,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000304011860175,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001216047440701,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001267729456931,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000252329843945,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.14873200888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.9622884491704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.771041810212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.526046726193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.103340854103022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007729957079799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.118487137843925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002860084119525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.0998859377546,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.0998859377546,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.20898,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001986080803571,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001986080803571,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000397216160714,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001588864642857,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001656391390179,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000329689413393,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.771041810212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.8370088320542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.736698081743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.6996932678601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.134418181587646,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009996978105723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.154178354283237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003698881899117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.219977187550921,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.219977187550921,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.041796,Mm²,,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000352124108677,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000352124108677,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,7.04248217354578E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000281699286942,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000293671506637,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.845260204043E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.055735582837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.3771734265628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.614095920263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.0495541678282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.4399775088082,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.026286330890292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001812992340537,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.030148769615325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000670807165999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.017,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.50725109988594,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.50725109988594,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.28638,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003774346629322,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003774346629322,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000754869325864,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003019477303458,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003147805088855,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000626541540467,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,157.462963870568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.082408451153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.260543520569496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014953095868105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.296143954392278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005532645471199,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.260713703764054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.260713703764054,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.049536,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000701861515515,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000701861515515,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000140372303103,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000561489212412,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000585352503939,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116509011575,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,157.462963870568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.5591841516075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.082408451153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9668981360948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.045066987341751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002405427746134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.051224900219205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00089000826607,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.382923252403454,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.382923252403454,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.072756,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001012339140059,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001012339140059,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000202467828012,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000809871312047,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000844290842809,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00016804829725,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.56262851369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.0447759931236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.647022790743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1465671174557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.067379071324701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003568301722156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.076601545913437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001320271637198,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.668078865895389,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.668078865895389,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.126936,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001770742205488,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001770742205488,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000354148441098,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001416593764391,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001476798999377,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000293943206111,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.662293156811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.0447759931236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.211637130333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1465671174557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.119625795942101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006225547685463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.136026693822408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002303452643621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.725109988593775,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.725109988593775,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.137772,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001883289478685,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001883289478685,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000376657895737,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001506631582948,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001570663425223,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000312626053462,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,157.462963870568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.7644775147052,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.082408451153,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9728566804409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.125342558544244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005202887596156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.142469253734664,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001925068410578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.863614143718429,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.863614143718429,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.164088,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002551777788022,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002551777788022,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000510355557604,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002041422230418,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00212818267521,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000423595112812,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,158.182086067772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.6738595916168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.909398977938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.7893280488982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.149905439670117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007002268272669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.170396682691769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002590839260888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.130356851882027,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.130356851882027,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.024768,Mm²,,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000397443242909,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000397443242909,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,7.94886485818755E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000317954594328,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000331467664586,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,6.59755783229567E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.9661056990782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.3773704714902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,83.91102155394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5696270744514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.3970994521345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.011518749245718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000975298711838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.012945494020671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00036086052338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.014,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.97588398240183,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.97588398240183,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.13778,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003908060901149,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003908060901149,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00078161218023,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003126448720919,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003259322791558,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000648738109591,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,296.699899639582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,341.20488458552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.21008565931645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.059408245746254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.38703231610003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021981050926114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.02656020857096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.02656020857096,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.195048,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00121758662009,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00121758662009,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000243517324018,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000974069296072,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001015467241155,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000202119378935,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,296.699899639582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.6477512118917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,341.20488458552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7396679483999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.312440149741542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009878742578377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.358127196370091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003655134754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.798435717777416,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.798435717777416,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.151704,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000738613263885,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000738613263885,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000147722652777,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000590890611108,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00061600346208,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000122609801805,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,304.139094783074,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.1542287240106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,349.759959000535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.9270646278839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.248948724468612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007760301114347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.285374051935707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002871311412309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.17321166693824,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.17321166693824,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.222912,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000973632963629,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000973632963629,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000194726592726,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000778906370903,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000812009891667,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000161623071962,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,311.578289926565,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.2714924207494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,358.31503341555,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7504521956773,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.374529957917425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010091558918494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.429362050653402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003733876799843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.993970995600456,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.993970995600456,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.188856,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00061196041648,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00061196041648,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000122392083296,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000489568333184,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000510374987344,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000101585429136,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,296.699899639582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.3887561174882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,341.20488458552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5738397634706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.302521414829112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007438802925324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.346758079025009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00275235708237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.40133615773179,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.40133615773179,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.266256,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001353814320449,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001353814320449,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00027076286409,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001083051456359,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001129081143254,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000224733177195,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,325.254010332017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.5092944127616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,374.042111881819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.4684389327218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.46651950899967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011850866693164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.534888039768499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004384820676471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.260713703764054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.260713703764054,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.049536,Mm²,,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000288131514317,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000288131514317,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,5.76263028634844E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000230505211454,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000240301682941,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.78298313766921E-05,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,320.28214824445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.0423130808677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,368.324470481118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.185655839921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.65648114832919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.085498094676299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002033072020774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.098023386444047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000752236647686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,40.0195535277823,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,40.0195535277823,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,7.986132,Mm²,,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009359864698992,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.009359864698992,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001871972939798,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.007487891759193,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.007806127158959,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001553737540033,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,170.605541957403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.2141765071048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.196373251013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3192453076288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.05315542211654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.416989305857038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.07728906489163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.154286043167104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.23056868176634,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.23056868176634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.376172,Mm²,,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001373995833558,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.001373995833558,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000274799166712,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001099196666846,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001145912525187,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000228083308371,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,170.605541957403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.1722081261213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.196373251013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.0437170066649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.921849711115395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074550276001341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.05570431182012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027583602120496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.72152517516702,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,6.72152517516702,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.659456,Mm²,,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002110656184805,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.002110656184805,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000422131236961,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001688524947844,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001760287258127,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000350368926678,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.665646725597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,56.1302397451377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.565493734436,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7681887057009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.929605994928803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.093145663126507,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.06336331758069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034463895356808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,12.5549942968877,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,12.5549942968877,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.767824,Mm²,,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003659753963581,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.003659753963581,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000731950792716,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002927803170865,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.003052234805627,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000607519157954,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.7257514937906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.0463029831706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.934614217859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.2171321037731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.26005615075262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.166197598508091,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.43844834121856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.061493111447994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,16.2131334528271,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,16.2131334528271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.462876,Mm²,,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004165240218784,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.004165240218784,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000833048043757,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.003332192175027,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.003473810342466,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000691429876318,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.4892392053278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.4481551024974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.862625086127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.105817387924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.10454287891671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.216250217548716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.25651483510695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.080012580493025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,17.3211666938243,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,17.3211666938243,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.673404,Mm²,,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003417053609262,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.003417053609262,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000683410721852,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002733642887409,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002849822710124,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000567230899137,1e6 dimensionless,Own calculations,,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.5502687756097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,57.3311658048011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.9328090919511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.2125313477764,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.63718941690171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.52750966365716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.21060053379202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.74198970856951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Netherlands,nl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.077922197503047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,961.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,13.98,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,5.22,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,11.6733,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.60114,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.70556,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,11.78,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,151.11,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,101.545042,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.360296,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.19813516466365,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.820762915561105,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.83544286249415,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.094519812080537,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.268172490088965,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,2.17780693056799,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.160731129319025,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.309421236966768,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Walls,,0,1.71609754483489,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Windows,,0,4.85552246707696,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Roof,,0,0.807921381774866,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Floor,,0,2.0100516180266,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.55959234994375,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.44040765005625,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.55959234994375,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ROOF,construction material,,insulation,0,0.55959234994375,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.44040765005625,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,250.161867586689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.7708232972739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.1497945244864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,291.563656672286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.5171051028784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9754786826118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,30.2608528014839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041857427847989,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,35.1942083461904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004784304003025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,175.9,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,118.20888,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.538784,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.55874512252224,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.955411268924614,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.13655217730607,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.110026040268456,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.312166904947713,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.56065020812522,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.186832363636776,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.33048058535128,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Walls,,0,1.4937535531552,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Windows,,0,3.72836839113133,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Roof,,0,0.695963615690733,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Floor,,0,1.64119670267197,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.62166003411029,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.37833996588971,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.62166003411029,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.62166003411029,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.37833996588971,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,195.374847796596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.9024532763825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.7218250421929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.709385106932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.56085040949052,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.4832709810261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,28.6749109631278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061401256662445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,33.3346787445416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007018163636517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,121.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,81.789084,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.28484,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.77061089433432,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.661129389729983,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.47846009676916,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.076136268456376,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.216014529108787,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.78722022302234,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.129184970544703,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.211848027927241,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Walls,,0,1.14173102201775,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Windows,,0,3.16434850476503,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Roof,,0,0.503740962865593,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Floor,,0,1.32687972395662,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.586181399934275,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.413818600065725,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.586181399934275,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.413818600065725,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.413818600065725,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.586181399934275,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.586181399934275,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.413818600065725,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.586181399934275,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.586181399934275,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.413818600065725,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.05730364771607,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.081644074654,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.577141820491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.9664575414505,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.92715616901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.18076731008213,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.7646228184222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.6752629020254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04699577489664,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.2095981712466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005371617070686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,115.565,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,77.651693,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.240524,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.68107663493054,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.627698142656469,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.403698990167,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.072286295302013,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.205091349461526,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.69628025452465,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.12259713603885,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.200844784705861,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Walls,,0,0.852430234067408,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Windows,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Roof,,0,0.642222991390127,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Floor,,0,1.17077185999221,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.953402846882707,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.046597153117293,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.59784536840739,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.40215463159261,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.59784536840739,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.59784536840739,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.40215463159261,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.046597153117293,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,133.605966560635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.9524971072669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.8860320734157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.71775402642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.10937041936061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.6721254876354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.059638794899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.044599935521495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.3297614122877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005097772630107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,115.295,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,77.470199,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.23858,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.67714905572031,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.626231621663805,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.40041946152646,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.072117409395973,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.204612184797877,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,1.68219709993985,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.122011049574181,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.205858565052382,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Walls,,0,0.253491478381543,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Windows,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Roof,,0,0.437065787761828,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Floor,,0,0.796171126241381,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.350362114575654,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.04059152608526,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.609046359339087,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.350362114575654,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,other,,0,0.649637885424346,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.609046359339087,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.390953640660913,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.609046359339087,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.609046359339087,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.390953640660913,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.04059152608526,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.731968587698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.3298508614051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.808798931007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.044109388962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.0382019534586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.5832996505512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.1754655029012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.043758846679919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.299527153351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005001636175515,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,168.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,113.476592,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.574856,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.45633713126268,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.917173091930701,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.05104150460434,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.105622496644295,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.299673130014047,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.51406621261059,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.183412665693847,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.324146586174097,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Walls,,0,0.214975127324411,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Windows,,0,1.35012436337795,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Roof,,0,0.431280350586284,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Floor,,0,0.554962690986616,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.406194480634845,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.406194480634845,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.593805519365155,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.499585455406846,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.500414544593154,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.499585455406846,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.499585455406846,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.500414544593154,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.500414544593154,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.499585455406846,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.1016523825202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.3215292464417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5635544372953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.344475851827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.80865079286829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.4513439583333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.9500634322188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052476610262934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.5051192304958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005998076553053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,112.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,75.65862,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.083024,Mm²,,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.63794599656626,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.611593569533323,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.36768490713282,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.070431677852349,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.199829411581083,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.35130976880919,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.113970954198978,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.412329725080422,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Walls,,0,0.186672291296625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Windows,,0,1.27730905861457,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Roof,,0,0.331203374777975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Floor,,0,0.446358792184725,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,0.667229129662522,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.667229129662522,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.332770870337478,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.408969804618117,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.591030195381883,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.408969804618117,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.408969804618117,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.591030195381883,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.591030195381883,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,0.408969804618117,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.8954472331639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.5140385969978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,33.1883680367793,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.7801437502526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.71635461163684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1699420790999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.0844240028854,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035213484137475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.6958462176524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004024901236913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,9.16,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.6486,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.39388,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.11752,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,7.69,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,84.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,56.830832,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.744984,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.92556002821877,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.61,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.60784262356268,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.082799081213407,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.23491832344269,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.6165454822055,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.11688149371288,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.192133052300395,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-value),Walls,,0,1.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-value),Windows,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-value),Roof,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-value),Floor,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,312.35,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.3718557648262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,364.043925,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.70010311391964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,20.2129135153798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024116514595103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.5202389338164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00275651761822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,109.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,73.49467,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.923472,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.47828856641105,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.76,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.06937095295322,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.106566408355675,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.302351205102148,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.08057195149574,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.150432115981151,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.247284498934159,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-value),Walls,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-value),Floor,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,253.765477796864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.3257686336899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,295.763664372245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.83783535483075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.8339267625793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.039086662211691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,25.3984154843827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004467605490796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,71.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,47.95107,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.649872,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.61293440549957,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.56,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.34680022859214,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.069356179436482,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.196777997470948,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.35409012863446,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.097905118413824,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.160939158451282,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-value),Walls,,0,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-value),Roof,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-value),Floor,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,194.034914312613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.6904265424527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.14769263135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.42231575380235,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.3814009409072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025143824877997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.2330336212205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002873939183555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,69.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,46.431898,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.6336,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.5595244673696,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.54,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.30220293025362,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.067059552096893,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.190261985019092,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.30925143603409,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.094663135169335,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.15560989616618,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-value),Walls,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-value),Windows,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-value),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-value),Floor,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,176.003974003332,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.0845361939132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,205.132631700884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.35306248696428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.1836221607007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024130362132463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.8380357049771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002758100391741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,70.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,47.191484,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.641736,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.57235522954179,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.55,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.31291661666739,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.067611274870297,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.191827338004098,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,1.32002311301052,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.095441962433187,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.156890154098083,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-value),Walls,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-value),Windows,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-value),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-value),Floor,,0,0.89,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,157.973033694052,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.4786458453737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.117570770418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.28380922012621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.49930327922553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024051396270227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.0399554225742,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002749074593687,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,84.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,56.696392,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.743544,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.06658622113613,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.69,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.72559949464867,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.088863207508854,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.252123518978608,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.73493974241669,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.125441783622963,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.206204695096481,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.245,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-value),Windows,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-value),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-value),Floor,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.911153075491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.2668651482946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.087448909485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.14530268645007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.3679030455291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026966009979824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.8804688995317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003082214940694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,46.05,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,30.94441,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.467712,Mm²,,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.903106000261926,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.38,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.754093510218708,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.038833558011263,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.110178932031955,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.758175233844346,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.054818534215899,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.090112232201681,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-value),Walls,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-value),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-value),Roof,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-value),Floor,,0,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,121.893269673251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.6090413413088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.1130929538766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.066605804174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.0701134253116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,33.4829682062534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.11257324353565,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016654775943826,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.9380579832107,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001903640890379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.01679952213574,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.722487276943889,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.68402760098334,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.086722379451837,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.246049541700561,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,4.09,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,11.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.035834,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.086184,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.272575136444876,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.227600238931471,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01172073086713,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.033254166646275,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.18,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.016545310782204,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.076029825662672,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-value),Walls,,0,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-value),Windows,,0,5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-value),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-value),Floor,,0,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,171.144159444397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.736513673589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.468517832444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.28458351289123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.80630539654685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002476627694445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.09861124182115,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000283078545475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.54999999999999,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.37591,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.02556,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.080456556111195,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.067181224352848,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003459631912781,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009815699845566,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.00488371295595,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035572843155246,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.425,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-value),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-value),Floor,,0,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.4317164588136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.9206420919863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,115.887665532747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.10572939111404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.36407027153993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000918131611871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.422355327763629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000104942443237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.975,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.678195,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.186372,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.157676488834751,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.131659868177017,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006780089019894,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01923653163784,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.13,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.009570962872269,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018105525962482,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-value),Walls,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-value),Roof,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-value),Floor,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.3219491872546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.5836364619053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.4567317777453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.83860964759577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.594172262857137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006259049494678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.688639940903595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000715409357242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.385,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.609397,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.174924,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.12155216756094,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.101496059913385,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00522674320512,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014829364442435,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.007378216570949,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014173950989991,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-value),Walls,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-value),Windows,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-value),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-value),Floor,,0,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.5768469432928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.7829956441923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.2573151124077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.74709640213118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.448644550709775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005734532730065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.519909091609561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000655457091046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.68,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.135496,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.169848,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.104793826178518,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.087502844859063,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004506134525676,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.012784846793779,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.006360985249036,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018432840929482,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-value),Walls,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-value),Windows,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-value),Floor,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.8317446993309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.9823548264794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.0578984470702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.65558315666659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.381205004339212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005432139002568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.441699242418866,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000620893487994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,15.91,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,10.684302,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.201312,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.389750910126551,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.32544200995567,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016759289135442,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.047549611035439,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.023657880244682,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.066093029881869,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.185,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-value),Windows,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-value),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-value),Floor,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.3415402114072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.3810731910535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.6590651163951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.47255666573741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.23896788271435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006116074606237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.43519452988834,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000699067327493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,37.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,25.176934,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.269784,Mm²,,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.734839996304329,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.28,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.613591396914115,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.031598119841086,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.089650479549128,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.39,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.044604787775673,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.300235208528656,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-value),Walls,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-value),Windows,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-value),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-value),Floor,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.6024386175969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.3724176146458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.1356422088091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.47156733335401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.79948376558119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00819399231375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.24202017184277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000936573321462,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,340.13,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.80320047786426,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,2.37593360995851,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,54.58,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,36.678276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.529128,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.449824132190137,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.375603150378764,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019342437684176,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.054878544127197,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.381261448362494,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.027304324823941,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.041258359003701,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-value),Roof,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,171.144159444397,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.736513673589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.468517832444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.28458351289123,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.24260568512278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015205294007079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.57649079828441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001737965105009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,42.3382,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.589752,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.519218034591034,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.433547058883513,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022326375487415,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.063344600220106,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.440078256629483,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.031516534699676,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.047623243261875,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,99.4317164588136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.9206420919863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,115.887665532747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.10572939111404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.47828274610361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021184270515033,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.51550328871952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002421362119868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,43.395,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,29.159719,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.448596,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.357642327159967,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.298631343178572,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015378620067879,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.043632363913516,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.303130094387879,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.02170888925861,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.032803343513478,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-value),Walls,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-value),Roof,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-value),Floor,,0,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,73.3219491872546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.5836364619053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.4567317777453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.83860964759577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.70062757773981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015065484982265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.28901770765498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001721984933473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,41.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,27.610298,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.432,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.338645540338819,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.282769026182914,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014561758234569,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.041314755921336,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.287028818490562,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.020555784298566,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.03106093754969,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.74,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-value),Windows,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-value),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-value),Floor,,0,0.83,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.5768469432928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.7829956441923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.2573151124077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.74709640213118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.42822878930247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014162254118291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.97281510632724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001618745645721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,40.395,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,27.143119,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.426996,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.332917658846108,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.2779862451365,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014315459330383,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.040615954379225,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.282173986929332,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.020208101891959,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.030535570024817,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-value),Walls,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-value),Windows,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-value),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-value),Floor,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.8317446993309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.9823548264794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.0578984470702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.65558315666659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.29572036371936,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013656337581487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.81876193313626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001560919385564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,68.59,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,46.095798,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.63,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.565288333215857,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.472015758235241,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024307398328282,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.068965176652335,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.479126470193908,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.034313001826203,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.051848861195747,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.185,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-value),Windows,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-value),Roof,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-value),Floor,,0,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,62.3415402114072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.3810731910535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.6590651163951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.47255666573741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.34349228533602,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019140076110364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.18980519625171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002187710699415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,29.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,19.537176,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.345528,Mm²,,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.239664451522337,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.200119817021152,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010305571415461,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.029239063085725,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.203134534964847,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.014547632207406,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.021982284350085,1e6 dimensionless,Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-value),Walls,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-value),Windows,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-value),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-value),Floor,,0,0.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.6024386175969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,30.3724176146458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,36.0082991797947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,67.1356422088091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.47156733335401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.4131448866819,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.17251032144962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010494520713553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.51593511101124,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001199523717559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.881,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,110.315448594532,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,110.315448594532,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,21.2454292,Mm²,,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.811830316762837,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.253298944636081,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.381245229992899,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.427127050253876,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.73884207871939,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.072988238043447,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Walls,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Windows,,0,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Roof,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-value),Floor,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,93.0593262002602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.8901790203787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.52538450766293,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,239.162468334669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.1782680277439,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.7880767614944,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.5444702405231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.51360142095278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,28.5911983685693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.566168539962057,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,109.790142472083,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,109.790142472083,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,21.14452,Mm²,,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.745675990152739,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.252092771900327,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.348281625980214,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.393791350272974,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.680017889953284,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.065658100199456,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Walls,,0,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Windows,,0,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-value),Floor,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.4613558994114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,77.5505372340919,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.42678586937734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.525684661487,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.4692041489549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.64017880406602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.12407832954405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.639768885557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.0237935389357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.623112176511661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,42.8475163650366,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,42.8475163650366,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,9.33324,Mm²,,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.284185734525296,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.098383597345757,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.133132611170558,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.149537948635391,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.258893031599729,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.025292702925567,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-9.36750677027476E-17,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Walls,,0,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Windows,,0,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Roof,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-value),Floor,,0,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.4345713103424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.2968595653622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.51357704579398,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.32684826758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.7528066348376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.77036556869097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.39723920228305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.730763381569821,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.04566517891068,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.277690084996532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,48.6234116288025,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,48.6234116288025,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,10.31724,Mm²,,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.31930300725225,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.111645821207238,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.14973415764386,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.167908339590265,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.290748265319889,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.028554741932361,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.5102810375397E-17,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Walls,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Windows,,0,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-value),Floor,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.8433431071351,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.3853616956428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.52396693158977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.377391785337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6464374443443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.78595039738466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.74077091842125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.777768869100753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.91246670547678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.295552170258286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,38.1882941855988,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,38.1882941855988,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,8.53948,Mm²,,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.255091505939374,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.087685403430829,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.119448886597132,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.13422071951614,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.232466971289321,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.022624534650053,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.77555756156289E-17,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Windows,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-value),Floor,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.1880653940494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.6824052794135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.49596740581149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.833328062707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.6193140061771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.74395110871723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.20285481437281,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.620669946235446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.55934796373738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.23585457956947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,17.0581440123219,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,17.0581440123219,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,4.93968,Mm²,,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.112292569327702,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.039167767804242,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.051987947000819,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.059483586347967,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.102812307366836,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.009480261960866,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Walls,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Windows,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Roof,,0,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-value),Floor,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,58.8735955343531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.6326613263563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.51293875237915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.305140523287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.6404113040154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.76940812856873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.04714034228041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.398299544500576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.64528398354918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.151353826910219,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,16.8656141701964,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,16.8656141701964,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,4.50016,Mm²,,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.117780316892512,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.038725693675526,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.055072058147612,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.061921929703005,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.107456584563841,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.010323732328671,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Walls,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Windows,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Roof,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-value),Floor,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.0657621073906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.6743758293258,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.47552362407245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.519008615994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9562628151438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.71328543610867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.970469124003882,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.295545199132099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.44943183653527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.112307175670198,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.478,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,23.9510858683096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,23.9510858683096,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.49852,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.348406618218582,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.171761392556032,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.170161792337955,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.178244825880626,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.312346533232959,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.036060084985623,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-value),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,105.388303684426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.7573533628805,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,270.847940468974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.4877942778946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.58813782919127,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.173347769249985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.37306255662236,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.079672152314995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,18.1266846361186,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,18.1266846361186,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.49484,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.26368144343472,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.129992628002027,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.128782016973517,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.134899426461203,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.236390414039227,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.027291029395494,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.6756361198088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.9043386274789,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.19261769062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,186.776384827909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.403648678442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.28892653592999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.35711322607853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.132469598808858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.44525395935799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.050338447547366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.94070080862534,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,6.94070080862534,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.58916,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.100963526668313,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.049774128937579,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049310586424804,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.051652940243509,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.090513801658143,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.01044972501017,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-value),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-value),Floor,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.987609386303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.5625250400662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.19261769062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.168156122799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8937595152251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.28892653592999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.431574352353306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.058103702292672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.09286250093322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022079406871215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.12475933769734,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.12475933769734,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.79088,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.118187540233088,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.058265415843713,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.05772279464984,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.060464745583248,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.105955129818963,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.012232410414125,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-value),Windows,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-value),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-value),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,60.1386573236066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2207114526534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.19261769062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.556349321669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3838703520083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.28892653592999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.506426608702419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.063076067726328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.28245487893544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023968905736005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,6.00693107431652,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.00693107431652,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.43008,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.087380361499344,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.043077748206726,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04267656855628,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044703792943065,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.078336494084162,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.009043867415182,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-value),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-value),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-value),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,60.2897052609102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.1580408915531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.19261769062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.944542520539,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.2200555387902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.28892653592999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.375327007333027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045988571118192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.950497542272207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017475657024913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.20331151328456,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.20331151328456,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.61172,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017504078825991,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008629356611924,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008548992098614,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008955086727377,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015692406667501,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00181167215849,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-value),Windows,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-value),Roof,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-value),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.5918011355175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.2638172113133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.19261769062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.72092891828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1202505402991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.28892653592999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.075549214028371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017901262264505,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.191338389793765,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006802479660512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.30073161340008,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.30073161340008,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.847016,Mm²,,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.033467798715294,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.016499329841999,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01634567289255,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017122125822744,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.030003881548261,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003463917167033,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-value),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-value),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-value),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-value),Floor,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.7336052512474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.9428800462987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.19261769062,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.805365495706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.9982944175935,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.28892653592999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.135573423980615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024515082485296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.343025951054688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009315731344412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.306,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,30.2175587216019,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,30.2175587216019,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.55468,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.439562427478273,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.085153723404255,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.195605280227831,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.243957147250441,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.406595245417402,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.032967182060871,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-value),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.924662949943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.648641822644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,310.776383781354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.4664838926047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.74921517179448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.376875917759404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.53365422852212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.147012848748574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,31.4593762033115,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,31.4593762033115,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.76624,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.457626636826695,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.088653191489362,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.203643853387879,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.253982783438816,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.423304639064693,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.034321997762002,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.0060900096364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.060802278305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.765651324765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.0831048657559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.45872284677334,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.502013480529253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.21290420953328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.190765122601116,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,11.7635733538699,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,11.7635733538699,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.4108,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.171119874602883,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.03315,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.076148344198283,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0949715304046,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.158285884007667,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.012833990595216,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-value),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-value),Floor,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.7705875573567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.931410301088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.030410022407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.4139359144134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.810745285880039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.211985043953863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.04397385926621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.080554316702468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,12.8898729303042,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,12.8898729303042,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.60268,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.18750369238401,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.036323936170213,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.083439143110884,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.104064549273125,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.173440915455209,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.014062776928801,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-value),Windows,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-value),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-value),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.2594886536354,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,94.965923125175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.856885839843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.0870507875665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.907561580464951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.247165908799431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.28899627114721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.093923045343784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,10.7720446669234,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,10.7720446669234,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.24188,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.156696513650267,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.03035585106383,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.069729948574369,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.086966565075898,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.144944275126497,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.01175223852377,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-value),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-value),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-value),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,68.7483897499141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,102.000435949262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.683361657279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.7601656607196,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.774486162989982,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.228672737345932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.95412922041166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.086895640191454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.09356950327301,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.09356950327301,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.44484,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.088640655174816,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.017171808510638,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039445091552793,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.049195563622023,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.081992606036705,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006648049138111,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-value),Windows,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-value),Roof,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-value),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,71.7261919424716,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.020440308755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.336313292152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.1477673173268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.456259601171279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.148848052975701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.15205273506993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.056562260130767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.39083557951482,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.39083557951482,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.863552,Mm²,,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.078418273140437,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.015191489361702,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034896131547495,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043522141592943,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.072536902654905,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005881370485533,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-value),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-value),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-value),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-value),Floor,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.7557890190616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4828749950552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.14939631925418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.132377778988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.583492498121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.72409447888126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.382238195893886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.23046689765784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.96418583427423,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.087577421109979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.055,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,30.6924335772045,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,30.6924335772045,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.6355812,Mm²,,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014336801476209,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.014336801476209,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010878764960148,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.011956892431158,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.002379909045051,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-value),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,61.4549322058241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4828749950552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.939175768968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.583492498121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.92168517766535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.453567777244083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.90076329094721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.172355755352752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,31.9792067770504,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,31.9792067770504,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.8548,Mm²,,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014937868571938,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.014937868571938,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011334854672386,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.012458182388996,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002479686182942,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,47.7311481879504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7263337446102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,122.669050843033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.3360068229519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.56337565871449,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.513620138807944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.97831604371283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.195175652747019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,13.4482094724682,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,13.4482094724682,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.6978,Mm²,,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006281818902769,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.006281818902769,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004766644183421,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.005239036964909,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00104278193786,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-value),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-value),Floor,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.5166044817435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.6035970820563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.697673518081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.6693668911814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.573871569617889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.239034784207972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.45821402763886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.090833217999029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,14.7381594147093,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,14.7381594147093,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.91756,Mm²,,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006884369892726,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.006884369892726,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005223859874601,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.005741564490534,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001142805402193,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-value),Windows,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-value),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-value),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,43.5233842202061,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,76.6421114759787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.85509744593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.1240023608719,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.658493471682063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.223607958757856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.67409660267149,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.084971024327986,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,12.6203311513285,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,12.6203311513285,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.55676,Mm²,,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005895107073393,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005895107073393,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00447320724729,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.004916519299209,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000978587774183,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-value),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-value),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-value),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.5301639586688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.6806258699011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.012521373779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.5786378305624,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.589196206150365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.165372836999128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.49862245801552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.062841678059669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.28725452445129,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.28725452445129,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.6482,Mm²,,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003403963428343,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003403963428343,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002582927449427,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002838905499238,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000565057929105,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-value),Windows,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-value),Roof,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-value),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.5437234355941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.7359134916873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.327369229477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.0196471268412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.369462572444279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.121531532616999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.940504222024108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.04618198239446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,6.97920677705044,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,6.97920677705044,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.448312,Mm²,,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003260070654622,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003260070654622,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002473741612727,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002718898925955,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000541171728667,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-value),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-value),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-value),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-value),Floor,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.6510023085117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.8626961497382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.15610750959963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.323075932875,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.4078245369005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.73416126439945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.326676498056707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.230563437485496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.830925076704121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.087614106244489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.017,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.00115517905275,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.00115517905275,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.57728,Mm²,,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001955752212389,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001955752212389,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001025205309735,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000930546902655,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001631097345133,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000324654867257,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-value),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,94.9444177337169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4828749950552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,244.007153575652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.583492498121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.102318048287345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046461154077146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.255184954654814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017655238549315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.731613400077012,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.731613400077012,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.53136,Mm²,,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001429203539823,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001429203539823,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000749188495575,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000680015044248,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001191955752212,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000237247787611,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,66.7200317346938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.8490737454014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.470481558163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.4426480232525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.054121542434921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.039771803825357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.133412511771993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015113285453636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.56911821332307,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.56911821332307,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.26732,Mm²,,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003065265486726,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003065265486726,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001606812168142,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001458453318584,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002556431415929,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000508834070796,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-value),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-value),Floor,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.758267141801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.5975644828554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.298746554429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.727074503485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.09887616153887,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020208740937557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.241929946699925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007679321556272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.69426261070466,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.69426261070466,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.28864,Mm²,,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003309734513274,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003309734513274,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001734962831858,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001574771681416,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002760318584071,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000549415929204,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-value),Windows,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-value),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-value),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.518748269791,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.903844567327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.683183053363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.4234609355843,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.106356182503853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019311125695913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.260182046899475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007338227764447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.50173276857913,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.50173276857913,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.25584,Mm²,,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002933628318584,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002933628318584,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001537807964602,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001395820353982,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002446646017699,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000486982300885,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-value),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-value),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-value),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.2792293977809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.2101246517987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.067619552297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.1198473676835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.09391055933508,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014892478290916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.229691493325661,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005659141750548,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.11667308432807,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.11667308432807,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.19024,Mm²,,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002181415929204,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002181415929204,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001143498230089,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001037917699115,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001819300884956,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000362115044248,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-value),Windows,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-value),Roof,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-value),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,54.8001916537608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.7774408565325,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.836492550165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9954275254823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.069296000181217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012513500348547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.169421472240104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004755130132448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.08779360800924,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.08779360800924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.400472,Mm²,,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002125,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002125,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001113925,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001011075,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00177225,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00035275,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-value),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-value),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-value),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-value),Floor,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,53.8421161657206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,60.6923424001173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.25557126714253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.374238545902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.0630901120446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.8833569007138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.066461673853615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02430558374566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.162361458273658,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009236121823351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.023,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,11.900269541779,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,11.900269541779,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.434088,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006982122685526,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.006982122685526,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003339549280487,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003642573405039,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005823090319729,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001159032365797,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-value),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.718757574253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4828749950552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,276.837206965831,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.583492498121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.32505387671845,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.195902400230964,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.35919482240558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.074442912087766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,12.4374278013092,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,12.4374278013092,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.5256,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007297284023378,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.007297284023378,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003490290948382,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003806993074996,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.006085934875497,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001211349147881,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.7767477651345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.0683887452036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.896241756396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.6659877231774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.925401012236502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.197169522614886,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.33000185701891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.074924418593657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.31266846361186,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.31266846361186,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.14144,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002530327587054,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002530327587054,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001210255684888,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001320071902166,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002110293207603,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000420034379451,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-value),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-value),Floor,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.5708423894447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.8490726326556,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.957064940873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.9626476004091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.263929393091174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.090001485465819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.661557922981045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034200564477011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.361956103196,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.361956103196,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.3202,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003145965325868,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003145965325868,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001504715215363,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001641250110505,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002623735081774,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000522230244094,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-value),Windows,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-value),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-value),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.9592513710827,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,69.7814292799002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.955276023682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.5169431263621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.330226988944862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.092125442935324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.827869692356949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035007668315423,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.41740469772815,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.41740469772815,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.98892,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002005058690634,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002005058690634,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00095901957173,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001046039118904,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001672218947989,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000332839742645,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-value),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-value),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-value),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,58.3476603527206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.7137859271448,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.953487106492,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.071238652315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.211795180257351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.060041077179072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.531048168778218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022815609328047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.924143242202541,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.924143242202541,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.56416,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000542213054369,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000542213054369,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000259340503905,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000282872550464,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000452205687343,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.00073670251953E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-value),Windows,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-value),Roof,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-value),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.1244783159964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.6065780976737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.949909272111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.070499677116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.057992080661903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038705087099584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.145452372173247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.014707933097842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.84713130535233,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.84713130535233,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.190784,Mm²,,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000497028633171,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000497028633171,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000237728795246,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000259299837925,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000414521880065,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.2506753106429E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-value),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-value),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-value),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-value),Floor,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,54.9123986929006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.2616034095748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.62778563357127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.124864640755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.0394092956384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.4416784503569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.04959122276405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.075330905154467,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.124161106969752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028625743958698,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,12.5529457065845,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,12.5529457065845,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.54528,Mm²,,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000586594691858,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000586594691858,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000234637876743,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000351956815115,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000489219973009,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,9.73747188484031E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-value),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-value),Windows,,1,4.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-value),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-value),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.684274450326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.4828749950552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.808585337338,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.583492498121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.858060136866221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.204851452067414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.16933851541726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.077843551785617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.0558336542164,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.0558336542164,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.97168,Mm²,,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000703553756185,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000703553756185,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000281421502474,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000422132253711,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000586763832659,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116789923527,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-value),Walls,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-value),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-value),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-value),Floor,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,48.1627137231037,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,83.5009828073698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.778174268376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.7303734668005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.765344043306274,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.248138200589005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.92390495754065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.094292516223822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.81324605313824,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.81324605313824,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.22672,Mm²,,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000224921277553,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000224921277553,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.99685110211426E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000134952766532,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000187584345479,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.73369320737742E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-value),Walls,,1,0.925,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-value),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-value),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-value),Floor,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,42.6710422882785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,86.5190906196844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.664578680876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.8772544354801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.218242439801769,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.106134698844979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.547126921391419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.040331185561092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.81440123219099,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.81440123219099,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.39728,Mm²,,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000271704903284,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000271704903284,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000108681961314,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00016302294197,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000226601889339,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,4.51030139451192E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-value),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-value),Windows,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-value),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-value),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,37.1793708534532,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.5553062443135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.5509830933748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.1710163728391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.231706086123101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.129325678309054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.578867213466225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.049143757757441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.86984982672314,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.86984982672314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.066,Mm²,,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000180836707152,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000180836707152,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.23346828609987E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000108502024291,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000150817813765,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,3.00188933873144E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-value),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-value),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-value),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-value),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,38.1935498610634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,96.2575184940861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.1574231429329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,36.5778570277527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.15813969830701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.102610514714696,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.395359080934117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.038991995591584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.433192144782441,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.433192144782441,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.48052,Mm²,,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.02429149797571E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.02429149797571E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.09716599190284E-06,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.21457489878543E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,1.68825910931174E-05,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.36032388663968E-06,1e6 dimensionless,Own calculations,,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-value),Walls,,1,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-value),Windows,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-value),Roof,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-value),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.2219078762837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,88.3701967445707,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.67100700493709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.370303242049,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.5806747629369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.00651050740563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018580873793367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042463646939701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.046514792248031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Poland,pl,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016136185837087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,436.26,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.93,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,2.19,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.44157,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.73532,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.75311,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,4,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,63.55,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,35.00402,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.41505,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.863823178838307,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.319017329115665,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.647003560949892,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.10711407417595,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.109705543712465,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.672502345270031,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.125251925012319,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.204261129816199,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.568605035405193,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.340146372934697,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete + bricks,,0,0.091152698662471,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,0.342722265932337,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.157277734067663,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.657277734067663,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.342722265932337,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.238920754786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.0879576210626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.731430871039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.8429104166432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.69025208307686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.093587229366674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.91361543781615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034477535298683,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,56.55,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,31.15122,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.18735,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.768673497455645,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.283877733461697,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.575736449594278,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0953155136845,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.097621534176867,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.606025155126681,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.113875044205534,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.191100154312057,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.323253757736516,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.518479221927498,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.158267020335986,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.323253757736516,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.676746242263484,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.346726381715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.6813655398772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.2775281106585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.362578836714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2502150648908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.0647078894705,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.40386473744404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.084609684913651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.93987846425939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031170207922189,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,69.86,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,38.477044,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.9194,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.949593820198964,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.350693164626599,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.711245771329024,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.117749633704672,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.120598415165268,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.760320533579347,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.141986366075845,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.233584028951566,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.025,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.627970226166619,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.036644718007444,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.335385055825938,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.627970226166619,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.372029773833381,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,0.627970226166619,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,0.372029773833381,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.974144931582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.0400091435679,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.3677795817588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.458533849091,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3823393684904,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.1703021106578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.39403868152251,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.113973402693732,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.27116353653752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.041987801552371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,71.96,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,39.632884,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.0349,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.978138724613762,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.361235043322789,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.732625904735708,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.121289201852107,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.124223618025948,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.790063939649086,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.145196674181969,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.226312779624696,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.679405225125069,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,0.624930516953863,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,0.375069483046137,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.4339729302995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.2532201912422,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.3825788452127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.998807248911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8292863184536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.1876172488989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.26333798889707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.122164497958401,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.07632146906523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045005401047875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,74.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,41.151988,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.1867,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.01565488470178,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.375090083894925,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.760725508641636,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.125941205703021,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.128988170357126,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.794625936715386,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.152569731285914,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.273362182286008,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.655112419700214,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,0.625401498929336,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,0.374598501070664,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.2652319429926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.1350021217284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.3802858014216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,122.441529751319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3121347816447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.1849343876633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.21536203010271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.115151411261312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.99525066047414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.042421779908667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,67.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,37.23314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.7951,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.91887406592399,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.339348095172603,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.688236675377069,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.113940384174575,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.116697006372347,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.712197567608097,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.134379505835084,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.228458973237491,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.88,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.709467455621302,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,0.689497041420118,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,0.310502958579882,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,66.2549319149003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.8264721269086,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.0682273928193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.9088415523497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.5668723315531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.8198260495986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.89213580516423,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.102933672241922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.16747500570932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037920764853924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,32.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,17.649908,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.78925,Mm²,,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.435241828267547,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.160738550405721,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.325996129372393,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.053969986705176,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.055275712189979,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.328050874887271,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.065934499006824,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.133490618160495,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.637726420986883,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,0.430668332292318,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.3133602584376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.7108839794215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6532698752228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.2794933505046,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7874896580189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.5043257540107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.74243737404081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027395565180759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.30089399856644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010092526212592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.5,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.6215,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.434,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.4445,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,2.36,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,43.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,18.5822607887193,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.80455,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.814991069313335,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.29,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.610428310915688,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.101058892594854,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.103503865802794,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.54953683530842,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.101873883664167,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.163580350340748,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,aluminium,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,concrete,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,flat roof,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,136.158568188536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.879165791137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.36798261126309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.069929332624017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.74746799301135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025761966138688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,36.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.5972139149299,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.57685,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.727107453220657,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.28,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.544603482462272,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.090161324199362,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.092342646559024,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.490278168457358,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.090888431652582,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.145940853110718,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.794114867617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.9142238246307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.016796144358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.704400056994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.52994631073838,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062938743837869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.40631897817171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.023186633229871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,43.87,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,18.7144557217014,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.9789,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.897236288867727,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.35,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.672029980361927,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.111257299819598,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.113949008686201,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.604993611922238,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.112154536108466,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.180088140837022,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.025,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.126719925516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.090985880676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.02336246585686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076685686918992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.06985204129764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028251007060957,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,44.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,19.183534516154,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.0394,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.899711565675617,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.33,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.673883962691037,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.111564234143776,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.114263368840803,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.606662655712701,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.112463945709452,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.180584964253463,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.450585678207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.6892572969536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.055452452809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9899223881977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.93551054348393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.082981671331407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.94098854987663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030570447718491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,46.73,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,19.9340605872782,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.1362,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.969592497693858,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.45,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.726224780772699,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.120229469714038,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.12313824720712,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.653782369873573,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.121199062211732,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.194611065608553,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,90.3652751604302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.2640229906931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.354709702549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.9912660697714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.71551672667558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.075331005912719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.62273645353242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027751942578246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,46.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,19.8828883551561,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.1296,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.893009178747231,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.32,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.668863874881676,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.110733138164657,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.113412165700898,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.602143331955275,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.111626147343404,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.179239699448551,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.88,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.2799646426531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,101.653966952288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.37455094726349,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.082525564132945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.14219641874946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030402417826577,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,18.23,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,7.78065545827845,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.5687,Mm²,,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.388563101337776,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.291033762901994,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048181824565884,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.049347513869898,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.262002548330614,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.048570387667222,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.077990165339939,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,78.6858636736685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.5564988801122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.153030088113,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.0511036897313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.97037908688067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022038076785502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.28773373960651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008118827487779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.3264500351721,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.124713752647326,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.993511076343903,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.16447980436134,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.168459154466857,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.64,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.61,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.11973657705121,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.08855,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.048832109524973,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.036575250034205,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006055181581097,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006201677909672,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.006104013690622,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012728095834351,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,aluminium,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete + bricks,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.444031199301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.723160079671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.17692480228627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00343146069871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.235213629832581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001264150121405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.54528550399008,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.97,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041566044234988,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.031132967132006,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005154189485139,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005278887617844,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.005195755529374,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016370288705615,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.7526031678786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.4265731991775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.245611114481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.419549566577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.63646585850867,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035333776003202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.886461428954588,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01301696307958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,12.7905012783761,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.65,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.052357531331237,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039215790967097,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006492333885073,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006649406479067,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.006544691416405,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.015812839914833,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.025,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.0852082257779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.5267070884692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.319800850799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5616388913921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.04595155109082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.065219066695974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.46161794062265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024026704170797,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,11.163477182924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.44,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.078427158938146,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.058741942044671,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00972496770833,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009960249185145,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.009803394867268,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008623764070878,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.7460486889726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.5267070884692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.913318741343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5616388913921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.896436354956206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056918458207396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.24315340869044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020968760003605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,15.3395056945843,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.98,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.046062387007926,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034500727868936,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005711735988983,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005849923150007,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.005757798375991,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.037304588631935,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.7591576467846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.5891234076619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.57790348762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8478330633826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.33379942938928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074426464347171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.86962618744738,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027418709465498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.35,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.25916169520415,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.81,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.02586488717676,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019372800495393,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003207246009918,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003284840671448,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003233110897095,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.017631776279665,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.88,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,50.6552761054406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.5514058375629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.2689990134671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9919379105582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.345475870006865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026366638728426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.47998404090947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009713469707552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,2.19,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.940633764623848,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0165,Mm²,,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.046678726929771,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034962366470399,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005788162139292,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005928198320081,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005834840866221,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.03684388606355,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,33.7034445760836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.3690714284794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,46.7534183159432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8195659142518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.085914523540119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00048458967857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.109124688689666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000178522837585,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,138.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.1035499648279,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.74238683127572,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,17.38,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,7.41818548074688,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.52195,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.138192221260241,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.103505973723921,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01713583543627,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.017550412100051,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.092965509961611,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.01727402765753,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.0279526836411,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,aluminium,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete + bricks,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,1,0.6666,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,1,0.3333,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete + bricks,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.444031199301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.7516736161463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.723160079671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2761165601883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.17433844342144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020226436043948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.56092062290767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00745141903859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,17.9,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.54528550399008,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.97,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.142326856188626,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.106602815285281,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01764853016739,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.018075510735956,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.095746986669323,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.017790857023578,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.028789012495725,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,2.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete + bricks,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,78.7526031678786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.4265731991775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.245611114481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.419549566577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.03167922630993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035333776003202,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.35676810313166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01301696307958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,23.43,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,12.7905012783761,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.65,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.186297108407794,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.139536534197438,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023100841442567,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.02365973276779,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.125326921657109,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.023287138550974,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.037683048199711,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,2.025,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,78.0852082257779,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.5267070884692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.319800850799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5616388913921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.56765319473486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.065219066695974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.08244654847056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024026704170797,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,23.07,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,11.163477182924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.44,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.183434668841989,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.13739256696265,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022745898936407,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.023296202942933,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.123401283936385,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.022929333605249,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.037104051300356,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,72.7460486889726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.5267070884692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.913318741343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5616388913921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.37514198388689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056918458207396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.81281645805735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020968760003605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,25.77,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,15.3395056945843,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.98,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.204902965585525,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.153472321223558,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.025407967732605,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.026022676629362,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.137843566841814,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.025612870698191,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.041446528045521,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,84.7591576467846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.5891234076619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,117.57790348762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8478330633826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.92249486340064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074426464347171,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.57017787478893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027418709465498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,19.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.25916169520415,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.81,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.156161980756682,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.116965323586755,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019364085613829,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019832571556099,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.105054235652822,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.019520247594585,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.031587497509275,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.88,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,50.6552761054406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.5514058375629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.2689990134671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9919379105582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.802683491580867,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026366638728426,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.02406431103588,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009713469707552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,11.6,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.95338963353219,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.20405,Mm²,,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.092234163787043,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.069083388676495,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011437036309593,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011713738800955,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.062048326556657,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.01152927047338,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018656566757006,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete + bricks,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,33.7034445760836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.3690714284794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.4251433517177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,46.7534183159432,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8195659142518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7474177215098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.454112629886369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005992759024981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.576657943187901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002207732424803,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.609,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,33.094,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,33.094,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,11.734184,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.233372564093512,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.157775528417097,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.110793002778071,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.12136461521108,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.205351751438906,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.028020812654606,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.6827132776786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.92609760724931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.761575368714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.81268061135566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.8000439874258,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.931501634629791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.89619842740444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.196655277887064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,14.526,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,14.526,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.15652,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.077184626576433,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.069252653828088,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035924886394189,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.040585295864875,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.067046581737165,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.010138044839268,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.38777878078145E-17,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.8673400034502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.8165368859246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.98489748548515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.806518406072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.4188112706072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.96967628624535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.18898560176427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.437358168783008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.13207100410061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.074350888693111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,7.346,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,7.346,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.611928,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.051762953365336,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.035022029121653,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.024576691998183,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026915828486524,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.045548379093487,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.006214574271849,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.21430643318377E-17,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.6438656366038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.4595283665727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.92327637732607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.453203520423,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.1881198223174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.8051479274606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.628576225234329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.217990279007445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.12583584973615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037058347431266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,19.386,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,19.386,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.878904,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.152524578075778,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.092422686707374,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.071541687023849,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.08029206789253,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.133874213055831,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.018650365019947,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.7554162747713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.4049141525219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.96792757717926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.3695326435975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.1788354059287,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.92436663106863,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.11902474391391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.573734397583439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.02184153133868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.097534847589185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,18.386,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,18.386,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,6.524504,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.146992607311868,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.087655190230155,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.068899202860663,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.077435338975866,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.129022131522808,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.01797047578906,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,50.2203341933178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.4583484232544,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.93862333008918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.3877881802393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8479192319533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.8461242913381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.97738059302536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.531475320120917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.76935671470242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.090350804420556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,24.826,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,24.826,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,8.80684,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.199312779104205,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.118357867543448,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.093629390554258,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.104927050022428,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.175156668963482,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.024156110140724,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,46.7021219668531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.3486892528161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.99518466256923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.1957346616615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8292771729787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.99714304905983,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.23378533438204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.716424890459271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.23912838204637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.121792231378076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,10.176,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,10.176,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.61488,Mm²,,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.07455415040103,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.048514044152184,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.034499236295707,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.039737164569941,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.065070793305362,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.009483357095668,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,35.5573137383788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.2679304228106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.24996950201811,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.5808721795466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7755481718778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.67741857038834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.394902914254279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.25039525632681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.725124366671338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.042567193575558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,8.674,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.674,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.072648,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.117904048044744,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.025006126126126,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.057584337065053,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.060319710979691,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.105700979072113,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.012203068972631,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,94.6655075118908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,166.611293220928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.844618189679239,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.241299280345524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.38790352937966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.041020877658739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.956,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.956,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.340224,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012994727914546,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002756036036036,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006346625113464,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006648102801082,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.011649773575391,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001344954339156,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.6655075118908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.0341811757601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,166.611293220928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.4158107998792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.093089115671357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024847981256342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.166192733927479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004224156813578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.926,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.926,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.683992,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.026179755191858,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.005552432432432,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012786192435704,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013393562756155,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.023470150529501,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002709604662357,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.6655075118908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.7645229875177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,166.611293220928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.539968907878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.187541461070119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.050454343607278,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.334819252661428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008577238413237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.396,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.396,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.55936,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.059753999908312,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.012673153153153,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029183853555219,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030570146353092,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.053569460917801,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.00618453899051,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,58.5760178446011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.8633611485163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.093791406498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.5367713952478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.269404737827706,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.10582341084055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.484985491255146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017989979842894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.196,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.196,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.48848,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.057035437583093,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.012096576576577,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027856107715583,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.02917932986751,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.051132269793243,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.00590316778985,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.4522901834105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.9621993095149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.3560307228026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5335738826175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.248236764103311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.092229494428227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.447236993411113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015679014052799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.326,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.243352,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.085988126346674,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.018237117117117,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041996600907716,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043991525438959,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.077088355269793,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008899771076881,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.32856252222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.3856013716586,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.6182700391072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.58555223318195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.360813575678403,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.126492751608313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.650621184332174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021503767773413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.276,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.276,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.453632,Mm²,,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017344427634897,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003678558558559,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008471018456884,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008873409178013,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.015549279374685,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001795148260212,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,41.3085850960978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.7669733337279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.7031097691321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.48038546673374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.056165219295201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025297683647326,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.101995258848002,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004300606220045,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.446,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.846,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.846,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.42764,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.093056388392243,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.087282488136756,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041410092834548,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.051646295557695,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.080959057901252,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.012097330490992,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.993851281265,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.269178255027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.726955644822131,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.190645913537121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.29933429733199,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032409805301311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.806,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.806,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.350264,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.051734241048916,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.048524269624378,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023021737266768,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028712503782148,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.045008789712557,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.006725451336359,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.0281986515889,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,98.1642220104303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.969629626796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6879177417731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.362412138331158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.132547615068692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.648904424442359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022533094561678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.516,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.516,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.538688,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020606702425159,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.019328111600252,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009169982579196,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011436719845964,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.017927831109889,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002678871315271,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,81.0625460219124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,99.1458642305346,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.670080998566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.8547969191909,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.127731509843583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.053408687310618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.229212485292376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009079476842805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.996,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.996,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.1264,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.081502498510063,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.076445486250072,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.036268611836978,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.045233886673085,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.070907173703755,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.010595324806308,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.1312407625594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,107.077533368977,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.070983742104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2031806727261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.373696551331226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.227689666955793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.675128455207175,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.038707243382485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.856,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.856,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.076784,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.07959950488241,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.074660568292265,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.035421779672672,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044177725209737,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.069251569247696,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.010347935634713,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.9525895572481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,115.00920250742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.4765576207566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.5515644262614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.346356966739772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.23884927162017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.6266039895482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.040604376175429,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.266,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.266,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.576488,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.098765369275203,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.092637242010177,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.043950589327465,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.054814779947738,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.085925871269427,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.012839498005776,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,52.7739383519368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,116.159294532494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.8821314994087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.747080070524,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.406656263294938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.299283028451437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.736827776178177,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.050878114836744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.696,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.696,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.31128,Mm²,,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.050239031770045,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.047121834086102,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02235636913767,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027882662632375,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.04370795763994,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006531074130106,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,37.2554577950022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.19306733137426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.5696057192038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.52548977476928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.149497748867087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.10297662483027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.273855472945725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017506026221146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.019,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.367392,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00503708998491,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00503708998491,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00382214388055,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.004200933047415,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000836156937495,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,54.6894574188929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.2534450572515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.372932015293382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.185914555098973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.663481276700369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031605474366826,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.706,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.706,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.314824,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002796203637519,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002796203637519,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002121759320149,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.002332033833691,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000464169803828,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.6894574188929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,85.5992015930952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.2534450572515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5518642708262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.207023074996596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.11254788463544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.368313602673991,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019133140388025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.486,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.486,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.528056,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001121197680883,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001121197680883,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000850764800254,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000935078865857,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000186118815027,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,54.6894574188929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.4551936090261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.2534450572515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6973829135344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.083010331744453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045653183716408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.147683220068416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007761041231789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.796,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.796,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.34672,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00286410928441,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00286410928441,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00217328612501,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002388667143198,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000475442141212,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,31.092483405665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,74.7837424718076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,54.7227707939704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7132362202073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.12247650528774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.100712761661633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.219607638141072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017121169482478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.616,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.616,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.282928,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002728297990628,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002728297990628,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002070232515289,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002275400524184,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000452897466444,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,31.092483405665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.1122913345891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,54.7227707939704,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.7290895268801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.116668873319407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.080968525697302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.20919420956747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013764649368541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,4.156,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.156,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.474304,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003135731871972,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003135731871972,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002379393344452,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.002615200381225,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000520531490747,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,25.6790599555715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.9480121214316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.1951455218059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.2311620606434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.111593581365818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.106073242062675,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.200837684657161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018032451150655,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.746,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.746,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.6202,Mm²,,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001317369549678,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001317369549678,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000999620014296,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001098686204432,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000218683345247,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,17.8504168123595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,65.2392148057467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.17213864063106,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,31.4167335897527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.0906665169769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.12961017048493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.033213381820922,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040461361022524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.060317916205375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006878431373829,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.016,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.206,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.206,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.783224,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003934016941596,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003934016941596,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002062211680785,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001871805260811,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003280970129291,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000653046812305,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,109.656526296765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.995486282306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.258130031048741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061507659695918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.469076092620434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010456302148306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.226,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.226,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.435912,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002186357556844,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002186357556844,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001146088631297,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001040268925546,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001823422202407,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000362935354436,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,105.353548682588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.0341811757601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,185.422245681355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.4158107998792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.138182127897311,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031836475984688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.251407541362605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005412200917397,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.486,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.486,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.173656,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000866696388765,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000866696388765,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000454322246991,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000412374141774,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00072282478823,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000143871600535,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.050571068411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.7645229875177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.849005080404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.539968907878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.05268568123032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01280965200392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.09598014332424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002177640840666,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.296,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.296,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.46072,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00231119037004,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00231119037004,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001211525991975,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001099664378065,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001927532768613,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000383657601427,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.4446158400576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,65.2816028439532,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.702523878501,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.097872483472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.129341831971574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030076540062266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.236317209226973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005113011810585,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.096,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.096,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.38984,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001954525189478,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001954525189478,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001024562104325,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000929963085154,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001630074008025,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000324451181453,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,86.9340283793214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,56.7986827003886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.003889947606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.65577605906607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.103342068859735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02214239846392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.189218801311092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003764207738866,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.536,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.536,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.545776,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002739188586714,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002739188586714,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001435882657156,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001303305929559,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00228448328132,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000454705305395,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.4234409185852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.1825114514392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.30525601671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.9110269467447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.13636549839804,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035029274369921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.250285451944405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005954976642887,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.126,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.126,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.400472,Mm²,,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002008024966563,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002008024966563,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001052606687472,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000955418279091,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001674692822113,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000333332144449,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.5091193469792,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,59.2184758557736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.35618043430526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.416050050683,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.0671408954815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.6410017595951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.095558327553726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023715341462913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.175720240338374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004031608048695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.026,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.016,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.016,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.424688,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00686856992501,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00686856992501,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003285236995132,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003583332929878,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005728387317458,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001140182607552,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,82.4506033168081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,145.113061837582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.345892833232386,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.111882711302077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.622213187872997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019020060921353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.236,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.236,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.793856,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003824233653467,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003824233653467,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001829130956453,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001995102697014,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.003189410866991,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000634822786475,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.8700142436521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.1754362800939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.051225068828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.949824167616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.182341561574359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.06047232714357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.328405179221126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010280295614407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.896,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.896,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.31896,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001532429943429,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001532429943429,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000732961241942,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000799468701487,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001278046572819,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000254383370609,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,73.2894251704961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.9371906428948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.989388300073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.0793224092921,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.068962893787333,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.024539886327458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.124373660705164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004171780675668,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.996,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.996,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.7088,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003413761347191,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003413761347191,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001632802052362,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00178095929483,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002847076963557,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000566684383634,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.1282470241841,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,68.0894137189619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.865714762564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.5752003322235,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.135341449133708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.048261776444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.244881686422154,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00820450199548,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.916,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.916,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.680448,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003276937245099,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.003276937245099,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001567359084331,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001709578160768,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.002732965662413,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000543971582686,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.8058907315601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.241636795029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.6183676875457,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.0710782551549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.094811307497734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.040310853273904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.17328087217503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006852845056564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.936,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.936,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.041936,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00502144454677,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00502144454677,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00240175692672,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00261968762005,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004187884752006,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000833559794764,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.3085850960978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.9430495783828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.7031097691321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.3803184283251,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.132080878719703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.069750373305502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.242289320865257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011857563461935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.206,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.206,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.428824,Mm²,,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002062623339034,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002062623339034,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00098655274306,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001076070595974,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001720227864755,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00034239547428,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,28.1220407945881,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,61.72954089288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.67809021715263,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.494791798475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.4940219517896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.82050087979753,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.038350958000159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026471108643848,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.071534242969997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004500088469454,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.022,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.676,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.676,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.658592,Mm²,,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006572450805009,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.006572450805009,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002628980322004,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003943470483005,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005481423971377,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001091026833631,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.0805084521639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5313776083442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.9016948758085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3503341934185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.251515273349925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.130251514650179,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.45419004349899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.06214275749053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.596,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.596,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.92144,Mm²,,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003648862765142,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003648862765142,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001459545106057,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002189317659085,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.003043151546128,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000605711219014,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,2.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.575,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,76.6207626782459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,81.4763042686571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.852542313713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8509717256717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.205937583293493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.075075525805312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.368847522473046,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012762839386903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.036,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.036,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.368576,Mm²,,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001456171735242,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001456171735242,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000582468694097,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000873703041145,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001214447227191,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00024172450805,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.7375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.161016904328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,84.42123092897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.803389751617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3516092579249,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.108644347558521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031115639610876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.193767087684527,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005289658733849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.906,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.906,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.676904,Mm²,,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002679018655763,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002679018655763,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001071607462305,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001607411193458,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002234301558906,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000444717096857,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.818,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,43.862610518706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,90.3110842495958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.1981945129226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3528843224313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.088763668361959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061131934172889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.160921051086157,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010392428809391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.706,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.706,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.606024,Mm²,,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00239790442116,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00239790442116,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000959161768464,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001438742652696,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001999852287248,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000398052133913,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,37.1305326384616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,93.9235276195797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.3497374436923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9669996953285,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.067964612505402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056919911902128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.123821848689517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009676385023362,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.606,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.606,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.924984,Mm²,,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003662918476872,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003662918476872,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001465167390749,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002197751086123,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.003054874009711,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000608044467161,1e6 dimensionless,Own calculations,,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,30.3984547582171,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,86.2274526139619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.70804444559589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.5012803744621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6586669443735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.23047866974104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.086275536925137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.079759014028673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.158266964069193,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Portugal,pt,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013559032384874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,493.1971328901,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,8.83,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,5.1,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.48563,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.06181,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.28256,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,5.78376044568245,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,61.47,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,39.767941,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.13872,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.10053376997418,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.624154976377844,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.05761295294519,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007703736389819,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.035217080639174,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.05386156469351,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.080322387198782,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.140774575072501,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.70733691231495,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.29266308768505,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.058914663695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.2962317108706,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.1562148153025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,229.364000372568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.09258548819577,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.6227713339039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.44532394056651,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006422213262932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.4340057882353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000706443458923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,145.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,102.093798,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.73344,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.60783713900178,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.60235482342459,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.50613149058071,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018254859973013,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.083450788448057,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.55082103045803,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.193089315640607,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.320999425974492,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,,insulation,0,0.363792393244542,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.636207606755458,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.363792393244542,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.636207606755458,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.363792393244542,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.636207606755458,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.363792393244542,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,0.363792393244542,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,other,,0,0.636207606755458,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.363792393244542,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,other,,0,0.636207606755458,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,138.787966890835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.0552832616473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.2274437765799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,197.647943649238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.2660811587812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.7061092185984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.9273401170802,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.048447586955423,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,26.3009011028218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005329234565096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,65.28,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,42.588484,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.25416,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.16874645361826,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.668423196086219,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.12316534192715,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008181225175328,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.037399886515785,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.27560311521853,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.095275592289547,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.141432281214888,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.574295343137255,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.425704656862745,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.574295343137255,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.425704656862745,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.574295343137255,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.425704656862745,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.574295343137255,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,0.574295343137255,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,other,,0,0.425704656862745,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.574295343137255,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,other,,0,0.425704656862745,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.432346378469,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.3095777930778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.0195773460125,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,170.083604477578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.65405355723856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.4629054948346,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.24038058196958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010753402291889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.68918133865844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001182874252108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,56.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,36.347755,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.20358,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.01781917720892,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.5704754028732,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.978124229297772,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007124734240462,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.032570213670686,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.1092127163529,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.082861784046397,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.123191913035577,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.714248021108179,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.285751978891821,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.714248021108179,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.285751978891821,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.571503957783641,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,98.1734714367179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.2415997716165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.022333769664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.80884067303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.63657597487781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.4661305105069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.45255496208672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010431764881506,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.21168700713965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001147494136966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,50.57,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,31.698671,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1659,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.905384622540987,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.497508363563858,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.870074622261888,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006337692357787,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.028972307921312,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.895795402414771,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.068112448357892,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.117242123162133,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.32707138619735,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.67292861380265,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.32707138619735,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.6541427723947,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.67292861380265,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.868521861489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.0106419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.2451543068359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.003661982946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.17117061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.726830538998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.41327175004033,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007799065506524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.62808015234975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000857897205718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,55.02,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,34.993006,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1926,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.985055604749952,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.549212714666816,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.946638436164704,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00689538923325,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.031521779351999,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.00517338404305,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.076128159024448,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.12708193351104,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.4592619924088,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.6683007540008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.1830389375647,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.341035003389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.03351308294008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.6541555569507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.29999218000074,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007062314725221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.58296607866324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000776854619774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,58.3471328901,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,37.456082478541,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1726627973406,Mm²,,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.04462323290591,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.587870523007474,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.00388292682258,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007312362630341,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.033427943452989,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.05489711938256,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.079057704707242,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.120929377612442,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.233063147604247,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.766936852395753,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.233063147604247,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.466126295208494,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.766936852395753,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.8630796759739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8946728764546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.1263915920945,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.8582117665545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.72841401641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.5878781627505,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.88077062943775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005852349033793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.95958419386451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000643758393717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.24,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.03564,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03668,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.16768,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,4.25,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,43.48,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,29.800744,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.10404,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.04341929476505,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.35,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.00272594226921,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007303935063355,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.033389417432482,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.846284733349517,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.065735415570198,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.131399145845336,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,181.380915767302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.0006419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.3866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,258.304562144215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.06007061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.8924152749226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.83465907158628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00478590679288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.34523034664547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000526449747217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,92.67,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,66.216101,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.48876,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.30699300942886,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.77,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.21702028206113,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.016148951066002,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073823776301724,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,1.87112982634974,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.145340559594018,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.290522623485098,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,172.509965337613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.6551116290783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,245.671441637295,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.22206227919861,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1264152749227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.4639448981541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032089592359828,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.4305798957978,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003529855159581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,27.79,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,18.185437,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.09948,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.940534809443717,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.51,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.903853951875412,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006583743666106,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.030097113902199,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.762838347354159,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.059253692994954,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.118442769094603,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.044517153798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.3095777930778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,249.280896878724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.65405355723856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1264152749227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.11004486837453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004208956798855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.59281512598163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000462985247874,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,24.36,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,15.646208,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0789,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.820175591677666,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.788188743602237,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005741229141744,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.026245618933685,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.665218752792,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.051671062275693,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.103285776609973,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,140.576325739708,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.2415997716165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,200.194745485918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.63657597487781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1264152749227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.01449795043095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004042962221981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.06104810447685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000444725844418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,33.08,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,22.101624,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.13122,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.859647032362506,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.43,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.826120798100368,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006017529226538,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0275087050356,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.697232802965773,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.054157763038838,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.108256466357895,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,172.246154147659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.0106419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,245.295748121681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.17117061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1264152749227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.90608709962653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006168736442231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.68265621107855,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000678561008645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,32.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,21.694459,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.12792,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.91466452589022,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.45,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.878992609380501,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006402651681232,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.029269264828487,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.741855770044548,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.057623865131084,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.115184890714587,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.502574860618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.6683007540008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,32.5866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.308816859006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.03351308294009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1264152749227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.06634355006985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004690609032452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.06723157357945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00051596699357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,31.15,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,20.672845,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.12,Mm²,,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.823172620921305,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.45,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.791068888705374,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005762208346449,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.026341523869482,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.667649549411363,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.051859875118042,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.103663196391899,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.4673554879763,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.8946728764546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,32.5866797221561,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.8079609504271,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.72841401641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.1264152749227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.368998720908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004067360745175,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.08556958230807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000447409681969,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.70813664658867,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.623738811313554,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.64151931737171,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011956956526121,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.054660372690837,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.53376044568245,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.379999483,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.6753,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.008279996898,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.057114475209132,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054887010675976,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000399801326464,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001827663206692,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.051283908185346,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003598211938175,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002232355085611,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.942705214844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.0106419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.41760649646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.17117061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.283943704607804,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000389247969869,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.355063442120328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.28172766856235E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,12.0846597166,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.55877358819898,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0665079582996,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.300844129572923,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.289111208519579,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00210590890701,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009627012146334,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.270132267916754,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.018953180163094,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011758681493075,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.8142436211069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.7551116290783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.663464340818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.34306227919862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.926549187677369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004439746180512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.19227572040597,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000488372079856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.7429738144,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.60432351480032,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0374578428864,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.228211644174548,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.21931139005174,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001597481509222,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007302772613586,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.204914515345192,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.014377333582997,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008919795246359,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,78.2090274708563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.3095777930778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.377476021246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.65405355723856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.437954218344489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001584825517563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.539357932389235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000174330806932,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.8702036398,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.95821175454394,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0322212218388,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.197643585531254,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.189935485695535,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001383505098719,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006324594737,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.177467016140713,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.012451545888469,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007725023502072,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,66.3811189953256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.2415997716165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.5333515612431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.63657597487781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.336682053231212,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001651066953616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.40214402613336,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000181617364898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.7600240868,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.0253,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0075601445208,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.045737590178481,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04395382416152,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000320163131249,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001463602885711,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.041068439598604,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002881468181244,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001787682398633,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.652851419721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.0106419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.036125706825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.17117061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.288768781163229,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000355407247477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.366912837977988,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.90947972225187E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.503455344,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.0253,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.012020732064,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.070391078859733,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.067645826784203,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000492737552018,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002252514523511,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.063205161425221,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004434637968163,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002751279466349,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,40.0217801069999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.6683007540008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.9950170503786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.03351308294009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.261406869034305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000440779818606,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.321977463289319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.84857800466614E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,8.38,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.816214,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00702,Mm²,,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.221450611984608,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.029,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.212814038117208,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001550154283892,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007086419583507,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.198843687366866,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.01395138855503,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008655536062712,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,37.4268818190008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.8946728764546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.2996223984391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.72841401641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.428830324746543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000237940603593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.513220326407493,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.61734663951982E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,168.4158168055,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.88186335341133,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,1.68623955431755,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,15.610000517,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,9.1685833827351,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.026400003102,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.174424756990609,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.167622191467975,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001220973298934,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005581592223699,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.156292923158647,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.010988759690408,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007143074141554,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.942705214844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.0106419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.41760649646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.17117061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.54081962666716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001241081094424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.03875202962348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000136518920387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,40.9053402834,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,27.894723411801,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.1781720417004,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.457072633071343,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.439246800381561,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003199508431499,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.014626324258283,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.409558936191529,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.028795575883495,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.018718120996319,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.8142436211069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,66.7551116290783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.663464340818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.34306227919862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.54017246612412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011893894532891,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.68292507252399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001308328398618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,30.7470261856,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,20.3745234851997,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.1172221571136,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.343564535104696,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.330165518235613,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002404951745733,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01099406512335,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.307850252519174,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.021644565711596,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014069716873926,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,78.2090274708563,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.3095777930778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.377476021246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.65405355723856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.58625323759609,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00495961997547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.40601343856186,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000545558197302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,26.6197963602,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,17.3191352454561,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0924587781612,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.297447236225955,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.285846794013143,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002082130653582,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.009518311559231,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.266526947420188,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.018739175882235,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.012181112923532,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.43,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.3811189953256,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.2415997716165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.5333515612431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.63657597487781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.01202796866364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004737735705909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.62139823841092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00052115092765,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,15.7299759132,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,9.25740116854196,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0271198554792,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.175765351393809,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.16891050268945,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001230357459757,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005624491244602,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.157494159850394,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.01107321713781,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007197974405605,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,104.652851419721,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.0106419923087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.036125706825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.17117061915396,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.48706815592908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001274921816816,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.96124123475206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00014024139985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,19.986544656,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,12.4085390088368,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.052659267936,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.223327871828587,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.214618084827272,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0015632951028,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007146491898515,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.200112452573282,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.014069655925201,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009145763330104,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.0217801069999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.6683007540008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.9950170503786,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.03351308294009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.14937073307427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001930925874163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.4461488210727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000212401846158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,18.8171328901,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,11.542823478541,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0456427973406,Mm²,,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.210260968796334,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.202060791013277,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001471826781574,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006728351001483,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.188403882604333,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.013246441034169,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008610645157831,1e6 dimensionless,Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,37.4268818190008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.8946728764546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,31.5992045790605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.2996223984391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.72841401641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9710693575008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.04781832197458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001547047685026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.31091765800727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000170175245353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.378,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,16.5930018416206,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.5930018416206,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.827169,Mm²,,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.182648842468205,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.074802987041511,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.093344859479436,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.089303982988768,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.164584604608185,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.01806423786002,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.661413273078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.02117528416329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.325978582309,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.03176292624493,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.7204053828743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038215084228207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.41192127254525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012610977795308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,30.0276243093923,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,30.0276243093923,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.384803,Mm²,,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.303134697983159,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.135367669668351,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.154212906368939,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.14892179161422,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.272067046026165,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.031067651956994,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,6.59194920871187E-17,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.641767175438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.4422697469431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.76659271186681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.498474045613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.3159490164912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.64988906780022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.94588086180939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.068467803472376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.31953786475912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022594375145884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,9.66850828729282,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,9.66850828729282,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.595476,Mm²,,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.098458810431031,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.043586646167362,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049763130601379,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048695679829652,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.088686799163269,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.009772011267762,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.222066912011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.6092039507449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75711501399765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.510893676815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7010373037458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63567252099647,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.25670479762715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030136566331774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.76108558478547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009945066889485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.79373848987109,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.79373848987109,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.561561,Mm²,,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.090318944366933,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.039643092466506,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.04564302018422,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044675924182712,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.081527055244415,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.008791889122518,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,126.054127182161,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.2882084973237,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.76304521511917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.475778055026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.9251088041168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.64456782267876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.12399078857645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.028801457651966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.57513747986379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009504481025149,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,8.31491712707182,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,8.31491712707182,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.539427,Mm²,,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.08990612990042,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.037484515703932,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.045289649957854,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044616479942566,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.081223817650479,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.008682312249941,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.107462096641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.7040933147081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.75796314372016,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.350446935298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.4023507938537,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.63694471558023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.03824566291019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026811729944473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.45500565985951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008847870881676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.58195211786372,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.58195211786372,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.55335,Mm²,,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.091172220334493,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.038688337359983,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.045739841032169,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.045432379302324,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.08166300285675,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.009509217477743,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,115.487908736533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.153203834367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.81258438236262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.683072231147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2205572653411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.71887657354393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.00666721534817,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027198925341747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.41088965272534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008975645362777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.86924493554328,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.86924493554328,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.072471,Mm²,,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.023799088513132,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008426751592357,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011725672610759,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012073415902373,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.021357221306857,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002441867206275,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.643840347389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.996857429429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.79534480917473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.101376486344,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.5389629517116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.69301721376209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.206437887539432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002753670254768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.289348636474416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000908711184073,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.94290976058932,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.94290976058932,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.112098,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.034785062689784,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.012303206997085,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01698902461769,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017796038072093,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.031184808701391,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003600253988393,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,97.6404842574771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.696677960468,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.212984860902358,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005178910853542,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.268706626364285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001709040581669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.72375690607735,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.72375690607735,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.219912,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.084572214027768,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.029912536443149,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.041305069331162,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.043267144696606,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.075818989875894,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.008753224151874,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.057652025252,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.9658610661578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.880712835353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.1787341518321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.744536095952243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009448708438781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.80317580554075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003118073784798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.40883977900552,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.40883977900552,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.091392,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.025223291903019,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.008921282798834,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012319055765434,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012904236137584,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.022612681191056,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002610610711962,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,151.883629967568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.3955196768194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.637081954595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3205214933504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.23668664889373,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003966003334304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.301832003372788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00130878110032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.22467771639042,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.22467771639042,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.084252,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021926129562755,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007755102040816,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010708721678449,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011217407884305,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.01965677515301,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.002269354409745,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,151.709607909883,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,39.9238781026738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.393451073837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.1748797738824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.20830533855965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003363666577906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.262078470222519,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001110009970709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.40883977900552,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.40883977900552,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.087822,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.025223291903019,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.008921282798834,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012319055765434,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012904236137584,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.022612681191056,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002610610711962,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,151.361563794515,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.4522365285283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.906189312321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0292380544143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.235951141301859,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003201308316408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.30080229274417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001056431744415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.20626151012891,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.20626151012891,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.083538,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.021596413328728,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.007638483965015,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010547688269751,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011048725058977,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.019361184549205,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002235228779523,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,150.665475563778,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.1715352409607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.931665789289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.946606629517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.204232227785383,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002771083710959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.256374145270289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000914457624617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.718232044198895,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.718232044198895,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.027846,Mm²,,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012858933127029,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004548104956268,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006280302939241,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006578630187788,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.011528033548382,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001330899578648,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,150.402090827823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.810143905551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.06963846288345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.562927158952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8273474888318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.60445769432517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.129991849766806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000913631267194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.152385414535503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000301498318174,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.123,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,6.1878453038674,Mm²,RePublic¬_ZEB. D2.1 Report on the preliminary assement of public building stock. 2014 http://www.republiczeb.org/filelibrary/WP2/D2-1Public-Building-Stock-final.pdf,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.1878453038674,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.276675,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.110784654632865,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.028492244053775,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049299171311625,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.06148548332124,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.102475805535401,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.008308849097465,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,98.5811440287437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.013601640241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.621918632339039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012782343667182,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.871877461595744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00421817341017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.57274401473297,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.57274401473297,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.369138,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.153482906939282,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.039473629782834,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.068299893587981,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.085183013351302,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.141971688918836,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.011511218020446,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.38777878078145E-17,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.30599280077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.7498132609647,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,179.628389921077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0574383761184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.11643995795227,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021317650567526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.56466649374469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007034824687284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.06629834254144,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.06629834254144,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.155652,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.054897752965393,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01411892450879,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0244295000696,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030468252895793,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.050780421492989,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.004117331472404,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,126.33648640468,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.3273113935744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,176.871080966552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.2480127598796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.393289054027724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009078762673033,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.551195045155067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002995991682101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.96500920810313,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.96500920810313,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.151725,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.053084313678248,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.0136525336091,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02362251958682,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029461794091428,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.04910299015238,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.003981323525869,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,124.36698000859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,62.9934963050603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.113772012027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.7878537806699,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.374457919114672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009557688226885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.524811954581063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003154037114872,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.86372007366482,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.86372007366482,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.147798,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.051270874391103,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.013186142709411,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.022815539104041,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.028455335287062,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.04742555881177,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.003845315579333,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.427967216411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,67.6596812165463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.599154102976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.3276948014603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.350385648396189,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009999965564443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.491091273879455,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003299988636266,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.62430939226519,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.62430939226519,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.138516,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.04698456334876,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.012083764219235,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020908130690198,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026076432658562,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.043460721097603,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003523842251157,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.549941632053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.3362780287118,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,157.569918284875,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5509717494749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.300418580999948,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009465667887425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.421091284607533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00312367040285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.432780847145488,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.432780847145488,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.016779,Mm²,,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00774833149962,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001992761116856,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003448007517331,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004300323982289,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.007167206637149,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000581124862472,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.9472966691972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.92534923319021,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.326215336876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.88802384978531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.042357406606006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000775187293365,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.059383694675627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00025581180681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.6279926335175,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.6279926335175,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.177429,Mm²,,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016614457831325,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.016614457831325,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016614457831325,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.013856457831325,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.002758,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,99.333671845757,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.06714058406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.362992442392344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008197193293664,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.508450480616851,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002705073786909,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.34990791896869,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.34990791896869,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.244188,Mm²,,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0245,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.0245,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.0245,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.020433,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.004067,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.5639860572847,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.3578371635613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.7895804801986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6180862639752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.354610948015593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012296779541296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.496840293202688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004057937248628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.68508287292818,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.68508287292818,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.102102,Mm²,,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00771686746988,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00771686746988,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00771686746988,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00643586746988,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001281,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.4563591766183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.8614155351969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.2389028472656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.784267126615,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.109826850350719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005193052248975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.153878844836096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001713707242162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.58379373848987,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.58379373848987,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.098175,Mm²,,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007253012048193,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007253012048193,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007253012048193,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.006049012048193,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001204,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.3487322959518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.9951244379453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.6882252143325,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5183910645219,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.101470983877029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004319221341695,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.142173343260384,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001425343042759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.48250460405157,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.48250460405157,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.094248,Mm²,,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006789156626506,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.006789156626506,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006789156626506,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.005662156626506,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001127,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,61.1334785346189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.1288333406937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.5868699484664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.2525150024289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.091697436589226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003499318284694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.128483088544913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001154775033949,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.38121546961326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.38121546961326,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.090321,Mm²,,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006325301204819,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006325301204819,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006325301204819,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.005275301204819,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00105,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,56.702971011953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.3268700083908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.3841594167342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.967867102769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.079312908809244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003823005226028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.111137461140392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001261591724589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.174953959484346,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.174953959484346,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.006783,Mm²,,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000801204819277,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000801204819277,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000801204819277,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000668204819277,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000133,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.5083331024444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.3830008852341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,0.719574965939775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.7116663434221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.6663902921272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.07936244890966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.009837295150086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000260351895005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013784802459064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.59161253514991E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3.44383057090239,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.44383057090239,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.170289,Mm²,,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015172413793104,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.015172413793104,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007953379310345,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007219034482759,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.012653793103448,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.002518620689655,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,124.543353715703,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.360695201984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.444176627647582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007867326360317,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.623374320578488,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002596217698905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.61325966850829,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.61325966850829,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.215628,Mm²,,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020324543610548,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.020324543610548,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010654125760649,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009670417849899,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.016950669371197,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.003373874239351,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.268202487729,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.9658610661578,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,215.97548348282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.1787341518321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.73213510495356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009264642689973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.02703472976335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003057332087691,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.47329650092081,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.47329650092081,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.093891,Mm²,,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006490872210953,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.006490872210953,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003402515212982,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003088356997972,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.005413387423935,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001077484787018,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,152.17523449666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.3955196768194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.045328295325,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3205214933504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.230732039962598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004074448737976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.323678135892824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001344568083532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.3720073664825,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.3720073664825,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.089964,Mm²,,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00604462474645,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00604462474645,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003168592292089,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002876032454361,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00504121703854,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001003407707911,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,150.082266505592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.3955196768194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.115173107829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3205214933504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.211997644713612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003904034532205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.297405069548012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001288331395628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.2707182320442,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.2707182320442,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.086037,Mm²,,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005598377281947,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005598377281947,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002934669371197,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002663707910751,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.004669046653144,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000929330628803,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,145.896330523456,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.4145501511509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.254862732838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.0268015498798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.191027666711735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002874887651355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.268002187349152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000948712924947,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.15101289134438,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.15101289134438,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.081396,Mm²,,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005070993914807,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005070993914807,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002658215010142,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002412778904665,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004229208924949,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000841784989858,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.524458559183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.7584416708005,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.534241982856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.4602857513642,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.163396174248545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003073386118236,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.22926501890514,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001014217419018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.294659300184162,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.294659300184162,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.011424,Mm²,,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001298174442191,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001298174442191,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000680503042596,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000617671399594,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001082677484787,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000215496957404,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.974025160559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,34.8396373430077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.43413762795321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.163635224783,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.4970803231926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.65120644192981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.03164881408133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000398008017007,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.044438995702899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000131342645612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.038,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.478821362799263,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.478821362799263,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.018564,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00475,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.00475,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002271925,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002478075,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.0039615,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.0007885,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.3916846949043,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,111.148358572866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.039076014571472,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000857654026701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.054812578391153,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000283025828811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.74033149171271,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.74033149171271,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.104244,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017264423076923,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.017264423076923,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008257573557692,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009006849519231,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.014398528846154,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002865894230769,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.87038866353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.8138550905087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.418544128941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.7885721798679,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.228135630416654,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004671575510055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.319775726050942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001541619918318,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.313075506445672,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.313075506445672,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.048909,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003105769230769,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003105769230769,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001485489423077,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001620279807692,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002590211538462,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000515557692308,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,126.542255729645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.2619936414137,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.159158021502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9364579016665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.040311390741097,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002213718847008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.056505358031712,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000730527219513,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.110497237569061,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.110497237569061,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.041055,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001096153846154,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001096153846154,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000524290384615,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000571863461538,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000914192307692,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000181961538462,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,124.21412279576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.0568643726512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.899771914064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.2187652429749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013970297415441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001644534566819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.019582914379561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00054269640705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.027624309392265,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.027624309392265,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.037842,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000274038461538,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000274038461538,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000131072596154,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000142965865385,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000228548076923,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,4.54903846153846E-05,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,119.55785692799,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.8517351038886,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.380999699186,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.5010725842832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003363948224916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001318859359801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.004715652014369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000435223588734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.05893186003683,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.05893186003683,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.077826,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010504807692308,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.010504807692308,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005024449519231,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005480358173077,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.008761009615385,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001743798076923,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,110.24532519245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.3824606673941,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.34345526943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.9962120202401,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.119090012069421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003064979383901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.16696078937749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001011443196687,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.101289134438306,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.101289134438306,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.003927,Mm²,,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001004807692308,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001004807692308,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000480599519231,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000524208173077,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000838009615385,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000166798076923,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows ,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof ,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.1718095958101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.3122575811623,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.2170688139766,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.8405334341341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9830450017836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.3256032209649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006724472030457,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000142598235521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.009436717340756,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.70574177220041E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.911602209944751,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.911602209944751,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.072114,Mm²,,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000542253521127,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000542253521127,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000216901408451,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000325352112676,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00045223943662,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,9.00140845070422E-05,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows ,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,65.6580520344114,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1998506087718,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.661231049782496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.9212728481759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.2459507008947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.991846574673743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.060456805021503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003331656026801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.08469980499873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001099446488844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.02762430939227,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.02762430939227,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.231693,Mm²,,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002990610328639,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002990610328639,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001196244131455,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001794366197183,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.002494169014085,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000496441314554,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows ,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof ,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,156.713917893022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.9323450066007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.661231049782496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,219.399485050231,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.8176738521782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.991846574673743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.791223124519072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011105588811614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.1080448164567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003664844307833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.7219152854512,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.7219152854512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.10353,Mm²,,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001024256651017,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001024256651017,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000409702660407,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00061455399061,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000854230046948,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000170026604069,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows ,,1,2.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof ,,1,1.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,154.4328179477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,49.6648394044297,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.661231049782496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,216.205945126781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.3893970034618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.991846574673743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.267058813651283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005141800823541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.373996197496979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001696794271768,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.5377532228361,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.5377532228361,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.09639,Mm²,,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000914710485133,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000914710485133,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000365884194053,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00054882629108,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000762868544601,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000151841940532,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows ,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof ,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,152.151718002379,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.1298282000876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.661231049782496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.01240520333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5328433060289,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.991846574673743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.234988604896049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005121184140206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.329085727872253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001689990766268,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.26151012891344,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.26151012891344,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.08568,Mm²,,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000750391236307,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000750391236307,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000300156494523,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000450234741784,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00062582629108,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000124564945227,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows ,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof ,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,147.589518111736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.2550213280911,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.661231049782496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,206.62532535643,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2341570382701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.991846574673743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.187019821686261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004734250227391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.261911165327451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001562302575039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.16022099447514,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.16022099447514,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.081753,Mm²,,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00069014084507,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00069014084507,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000276056338028,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000414084507042,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000575577464789,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000114563380282,1e6 dimensionless,Own calculations,,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows ,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof ,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,138.465118330449,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.7274359684314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.661231049782496,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.851165662629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7400538695824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.991846574673743,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.161417311435628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004147120072727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.226060953424495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Romania,ro,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001368549624,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,152.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.99,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.03,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.79697,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.15721,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03582,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,1.39891089108911,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,35.42,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,22.74791,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.19256,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.461143604841348,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.238282250447408,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.416412675171737,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036430344782467,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008300584887144,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.476215911894476,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.055330878400448,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.016283688917434,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.8085827216262,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.1914172783738,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.8085827216262,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.1914172783738,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.694805194805195,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,0.305194805194805,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.497685342363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.7725274369479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.336888469499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.627361290294,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.52136746673511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.2506734404593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.70155428096605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005347877883259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.60679278143016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000870634519395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,30.72,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,19.73756,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.1653,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.399952894995093,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.206749113001623,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.361157464180569,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.031596278704612,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007199152109912,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.435208146232729,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.050538821335008,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014637402085806,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,143.873329546259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.8881446927569,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.0771056211865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.015595682735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.7033899559808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.4735861967621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.51791715900191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011883110317713,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.35773622868826,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001934570359724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,18.83,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,12.122015,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.096338,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.245153418384037,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.126976984441966,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.221373536800785,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019367120052339,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004412761530913,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.251655134921335,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.029247947429703,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008680555566813,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.479553903345725,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.520446096654275,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.479553903345725,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.520446096654275,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.476047534751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.9677899729975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.9547609376063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.022694189616,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.018356207604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.2714605450194,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.01928478381209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003561402950419,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.51369096636965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000579796400328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,24.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,15.606335,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.119364,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.315978410206084,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.163474913740917,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.285328504416094,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.024962294406281,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00568761138371,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.325808750876588,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.037860500655642,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011187190602837,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.535640708693861,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.464359291306139,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.535640708693861,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,0.464359291306139,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.892098267413,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.6576898282307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.6951238893499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.09699202485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.27027190403596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.8425141775949,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.44443591120868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005330520488657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.05629840912237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000867808735553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,19.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,12.29495,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.097904,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.248668629375204,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.128788462550553,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.22454777232581,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019644821720641,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004476035328754,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.244502095215995,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.028434309145138,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008591408957065,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.486910994764398,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.513089005235602,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.486910994764398,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.513089005235602,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.243979057591623,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.756020942408377,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.243979057591623,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.243979057591623,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.756020942408377,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.756020942408377,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,121.906697023355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.1883942181174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.9207034888385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.973634606625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.40307057870952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.21519423391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.91752218120411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003249276547531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.4003840986744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000528982221938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,19.89,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,12.800945,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.102486,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.258953876349362,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.134088713312717,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.233835350343474,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0204573562316,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004661169774289,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.262104338260609,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.030467461009857,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009086230530102,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.415,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.50729009552539,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.49270990447461,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.50729009552539,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.156862745098039,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.843137254901961,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.156862745098039,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.156862745098039,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.843137254901961,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.843137254901961,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,109.029076737557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.1971769519543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.8263645523478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.293147480815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.86970040777816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.0593368769337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.82980160566444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004324619877098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.30828995526101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000704048115992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,4.62,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.02051,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.007482,Mm²,,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.060149165848872,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.031639562504815,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.054314696761531,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004751784102061,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00108268498528,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.061311624458014,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.007127518562513,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002130347697426,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,0.385281385281385,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.614718614718615,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,0.385281385281385,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.8779766291955,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.7542157486361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.3911672932545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.160893357283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.51838632387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,36.9924474851857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.390027070083087,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000207657042231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.497606167376164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.38065664752549E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.98,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.88494,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.07742,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01764,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.85,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,21.62,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,13.86811,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.118958,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.456080729033391,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.23,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.411840898317152,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036030377593638,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008209453122601,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.395580224161615,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.046064153632373,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.014436351239404,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,140.944626894417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.7842157486362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5255117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.676874659635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.52327032387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.258098018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.37677715445142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003305154737026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.92570465139369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000538079191188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,13.92,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.93626,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.074298,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.370909013879527,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.334930839533213,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029301812096483,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006676362249831,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.321706797752651,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.037461810401832,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.011740405725044,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,182.69891928558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.8546962218631,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5455117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,208.276767985562,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.3955445449193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.291140018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.90471856848863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004744276219892,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.31070801973468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000772368168598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,9.03,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,5.804215,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.045936,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.186341360943422,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.16826624893191,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01472096751453,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003354144496982,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.161622608981539,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.018820477455286,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005898274506597,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,168.069413110433,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.0241238086806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5455117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,191.599130945894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.02752735605321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.291140018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.15200698002655,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001700740151276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.40367154418921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000276880496628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,13,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.347,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.068962,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.272756927800737,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.246299505804065,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021547797296258,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004909624700413,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.236574886357782,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.027548449707875,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00863359173508,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.439906935286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.6884660942431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5455117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,174.921493906226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.11248228014278,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.291140018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.5348545563812,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003012843998791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.87985452987437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000490491003003,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,9.3,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.97715,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.047502,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.165660333323023,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.14959128099069,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013087166332519,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002981885999814,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.143684982984255,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.016731693665625,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005243656673143,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,152.307187576876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.0188109269126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5455117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.630193837639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.04986241890138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.291140018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.09213616581659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00147345555665,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.3381213152677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000239878564623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,10.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.483145,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.052084,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.197792930534827,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.178607016272949,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015625641512251,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003560272749627,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.171555092810819,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.019977085984018,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00626075173999,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.415,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,142.923043353747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.7040779864482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5455117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,162.932269423272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.46382389619376,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.291140018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.12380502780448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002067947197846,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.38213113063572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000336661803809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.78,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.16059,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.003886,Mm²,,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.035807864619061,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.032334501751012,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002828821304906,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000644541563143,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.03105784176143,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003616594326525,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001133428531105,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,133.538899130618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.7542157486361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,19.5455117840282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.234345008905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.51838632387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.291140018393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.189774921917575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000107852882399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.234159887706624,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.75584492545898E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.633589737244462,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.16693519208258,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.572131532731749,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.050053589242313,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0114046152704,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.548910891089109,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.240000000000001,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.174220000000001,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.001392,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005062875807956,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004571776854585,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000399967188829,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,9.11317645432126E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.004386225830149,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000511350456604,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000165299521204,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.564143577479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.7542157486361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.183123678326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.51838632387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025238635960485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.86338683221015E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.031743213791645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,6.28959376283813E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.09,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.718645,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.006322,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.029043881115566,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.026226624647357,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00229446660813,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00052278986008,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.025162185759459,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002933431992672,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000948263363436,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.703555190821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.5444305686403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.342052917536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7870332965746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.106625637438417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000496557890055,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.135047284964772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.08396245009449E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.85,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.845925,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.01653,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.058812057440615,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053107287868875,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004646152537809,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001058617033931,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.050951865156326,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005940017801502,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001920174482787,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,99.6793035400152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.9158823672609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.634406035617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.00990564939008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.252898447425802,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000610219535531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.323586859526132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.9343740384418E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.06,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.33993,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.003422,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.043221482405348,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039028998612029,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003414497110022,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000777986683296,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.037444960084885,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.00436536972294,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001411152597523,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.6550518892092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.7756941354036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.9267591536985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.4522830052437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.167251540281319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000156644425331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.21616928809231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.55017124439439E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.66,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.00523,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.027028,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.083008296052182,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.07495649133512,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006557655388122,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001494149328939,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.071914292601951,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.00838383790127,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00271016554896,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,93.057251906238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.2472844842607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.085267173111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.73825791403765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.392312602802443,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000952663605041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.504926561330555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000155093634901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.01886,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.018096,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.061160945814535,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.055228334070525,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004831714719348,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001100897024662,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.052986826164383,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.006177255527268,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001996864122884,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.415,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.1321253949694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.7640512950112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.5106229502651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.28758755082782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.225087483938306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000810050272235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.295224926046665,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00013187618432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.795505,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.00058,Mm²,,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024341301229811,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021980195010519,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001922962797155,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000438143422137,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.021088102541612,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002458471424211,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000794727263988,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.6468350614024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.7542157486361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.5373919699987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.51838632387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.085451311977039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.6097445134209E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.112394138337147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.62066406784922E-06,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,58.88,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.376410262755538,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.331089108910891,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,13.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.70568,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.07221,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.086686874371011,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.078278247557023,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00684826307531,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001560363738678,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.076249461902712,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.008755374311472,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001682038156826,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,other,,1,0.5,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.564143577479,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.7542157486361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.183123678326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.51838632387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.29905082741213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002004131919209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.64878898026293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000326272676447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.71,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,10.082755,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.08468,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.100431474658449,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.09068962161658,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007934086498018,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001807766543852,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.08833916272062,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.010143578940503,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001948732997326,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.703555190821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,78.5444305686403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.342052917536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7870332965746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.50606430424889,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006651142380552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.91140106432721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001082805979554,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,6.95,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.471975,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.033872,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.044430219533814,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.040120488239034,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003509987343171,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000799743951609,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.03908066078347,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.004487452172915,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000862106577429,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,99.6793035400152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.9158823672609,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.634406035617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.00990564939008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.613777601455012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001250414767544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.785746562062921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000203567524156,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,9.21,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.919505,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.04698,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.058878031928983,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053166862831872,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00465136452239,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001059804574722,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.051788904433922,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.005946681224827,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001142446270234,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,other,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.6550518892092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.7756941354036,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.9267591536985,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.4522830052437,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.741523614932178,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002150542110481,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.959355523595739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000350108255586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.14,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.31267,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.023374,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.032859183942994,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029671843100523,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002595875531497,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000591465310974,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.028902819629789,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.003318777578242,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000637586734962,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.057251906238,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2472844842607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.085267173111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.73825791403765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.43252598606133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000823870027535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.556712155839071,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000134126040483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.68,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.29904,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.032306,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.042704153451206,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.038561850566439,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003373628122645,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000768674762122,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.037562419285407,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004313119498572,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000828614667227,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.415,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,74.1321253949694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.7640512950112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.5106229502651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.28758755082782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.480184048139923,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001446147441137,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.630107346387441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000235432803417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.63,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.064515,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.003016,Mm²,,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010420324869082,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.009409553356781,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000823205664657,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000187565847643,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.009165680154972,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001052452811777,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000202191902332,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,1,1,dimensionless,Source residential part: Own calculations,,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.6468350614024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.7542157486361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,24.1747119434033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.5373919699987,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.51838632387797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.9390416016966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.114609396093136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.37067146978866E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.150833899623709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.36274531528159E-05,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.015015,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,11.3524781341108,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,11.3524781341108,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.842899,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01429823647526,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004750650787714,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007531537647856,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006134899091709,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.012573290266357,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001724946208904,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.95156391047391E-18,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.731286683128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.75484560688824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.168292552429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.71787862364595,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.54945583243176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.553346980565463,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.79239930595486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.188404913003566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,10.9909718172983,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,10.9909718172983,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.6729,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027775514880131,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004599371899665,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014061437863409,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013172200456593,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.024699473677006,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003076041203124,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.18836367085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,90.5363109191318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.67246343053126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.858501858186,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.5930719308874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.7364344078897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.25144114176556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.513603438213143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.44635623579961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.204897237756731,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.40136054421769,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.40136054421769,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.9975,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.011198828013621,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001423361133825,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005628315184526,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005387526191143,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.009978957585564,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001219870428057,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,104.769303401892,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.2753923302898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.5926736915044,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.532391946195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.2191412389043,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.53786779756988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.385584956099989,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.184320096179754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.445817210012806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.066355234624711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.2555879494655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.2555879494655,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.927,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010771793808312,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001362359942375,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005421337405352,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005172192000826,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.009595481915547,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001176311892765,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.12749136653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.8586520903626,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.48973257870363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.627889985175,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.3491147525306,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.42360316236103,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.363379689228894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.173157622578129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.420138485951647,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.062336744128126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.21574344023324,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.21574344023324,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.4241,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013805495161193,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000927218110034,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006716173435071,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007066891105986,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.012343399581398,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001462095579795,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.117963988113,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.6331108802319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.64345650744459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.456838226211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3079199168835,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.5942367232635,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.300812476899778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.111981413204538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.347984889100877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.040313308753634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.2555879494655,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.2555879494655,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.927,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.013068477949773,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001362359942375,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006364440083209,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006635565447201,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.01166407356057,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001404404389203,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,59.9427135288834,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.0974882084619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.02310779306798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,69.5335476935048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.8350957550463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.0156496503055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.224524296820736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.154347859777706,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.258979408262162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.055565229519974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1.40913508260447,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.40913508260447,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.034,Mm²,,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004065412886673,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000589678184013,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002012081028848,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001990762233235,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.003630000656408,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000435412230266,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,53.3278714915159,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.9429784550535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.3993101285696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.8603309301584,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.6194722438193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.32323424271226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.08698193717116,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076457039722525,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.100307258989954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027524534300109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.641399416909621,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.641399416909621,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.3807,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00835057140759,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000217115619002,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004078419075467,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004272152332123,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.007486287266905,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000864284140686,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,335.4800267889,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,389.156831075124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.22027535329374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03409920238246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.255264476834413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012275712857686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.7587074829932,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.7587074829932,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.9259,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022897140275803,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000595327737672,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011182963310702,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011714176965101,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.020527286257257,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002369854018546,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,213.875688035206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.299863976064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,248.095798120839,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.987951031383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.390125220695522,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.077127344055438,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.451846233620921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.047765843859958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.728862973760933,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.728862973760933,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.423,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009489285690443,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00024672229432,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004634567131213,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004854718559231,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.008507144621482,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.000982141068961,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,201.843576553307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.1328626158246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,234.138548801836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.2878305416969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.152910240948591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035588200886494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.177086182924995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012811752319138,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.709426627793975,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.709426627793975,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.4136,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009236238072031,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000240143033138,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00451097867438,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004725259397651,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.008280287431576,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000955950640455,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,198.597774836107,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,77.4022336065587,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,230.373418809884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.8648040983611,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.146529976356574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032013563819673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.169692801240265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011524882975082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.991253644314869,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.991253644314869,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.5499,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012905428539003,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000335542320275,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006303011298449,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006602417240554,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.011569716685216,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.001335711853787,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,195.351973118907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,70.6716045972927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,226.608288817933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.4417776550254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.201523102128288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.038862315368051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.23337281112631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013990433532499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.855199222546161,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.855199222546161,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.4841,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01113409521012,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000289487492002,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005437892100623,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005696203109497,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.009981716355873,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001152378854247,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,107.111456667593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.3111601835363,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,124.249289734407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.1520176660731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.0983998474366,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03113303264485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.113803912378022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011207891752146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.223517978620019,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.223517978620019,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1786,Mm²,,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002910047611736,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,7.56615035914542E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001421267253572,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001488780358164,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.002608857683921,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000301189927815,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.793785546108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.6038499915802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.240791233486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.8973859969689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.024753064822237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011359647608496,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.028624714910681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004089473139059,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,1.5E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.10689990281827,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.10689990281827,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.0517,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001391761901265,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,4.125E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000619334046063,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000772427855202,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00128737975867,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000104382142595,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,197.858033979629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,229.51531941637,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.022152980023129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004630755879099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.025647358055885,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001667072116476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.087463556851312,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.087463556851312,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0423,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001138714282853,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,3.375E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00050672785587,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000631986426984,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001053310711639,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,8.54035712139896E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.0842021724855E-19,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,176.541419911322,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,111.962182763527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,204.788047097133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.3063857948697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.016260738587028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004736000330897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.018821466857453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001704960119123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.038872691933917,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.038872691933917,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.0188,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000506095236824,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.5E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000225212380387,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000280882856437,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000468138094062,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.79571427617732E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.233313207877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,113.081804591162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.030643321138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.7094496528184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.006631927611594,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002125937926314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.00767481829456,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000765337653473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.029154518950437,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.029154518950437,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0141,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000379571427618,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.125E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00016890928529,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000210662142328,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000351103570546,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,2.84678570713299E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,158.742349099329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,122.128348958455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.141124955221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.9662056250438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.004901322848388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001722009720314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.005671871202963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000619923499313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.019436345966958,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.019436345966958,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0094,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000253047618412,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,7.5E-07,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000112606190193,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000140441428219,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000234069047031,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.89785713808866E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,156.25138499078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,131.174893325748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.251606589305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.2229615972693,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.003219133325387,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001233043997262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.003725085790004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000443895839014,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.058309037900875,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.058309037900875,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0282,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000759142855235,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.25E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00033781857058,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000421324284656,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000702207141093,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,5.69357141426597E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,146.181851291374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,132.486642259006,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.570947497994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.695191213242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.009070255154037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003736123311704,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01049416937635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001345004392213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.048590864917396,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.048590864917396,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0235,Mm²,,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00063261904603,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.875E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000281515475483,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000351103570546,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000585172617577,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.74464284522164E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,143.102113848078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,9.37302460036676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,165.99845206377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4040573064071,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00740889885561,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002104889035954,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008571550503896,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000757760052944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.007,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,5.20087463556851,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,5.20087463556851,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.585799,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002619401889286,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002619401889286,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00198760215359,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.002184581175664,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000434820713621,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.55223751134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.960595513154,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.551256139136255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.231609360182196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.638562380985919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.083379369665591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,4.46064139941691,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.46064139941691,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.2278,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002246586070187,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002246586070187,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001704709510058,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001873652782536,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000372933287651,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.163754038748,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.6310233697954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.9899546849476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.1471684131264,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.37292962513126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.21750239386323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.431830971895594,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.078300861790763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.50631681243926,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.50631681243926,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.799,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000758651069453,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000758651069453,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000575664431501,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000632714991924,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000125936077529,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.72892325646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,98.6073336034934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,86.6855509774936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4986400972576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.117748263750477,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.078787259549191,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.136328844436864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028363413437709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.46744412050535,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.46744412050535,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.7802,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000739072977338,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000739072977338,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000560808575204,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.0006163868631,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000122686114238,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,73.5966668434833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,98.6073336034934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.3721335384406,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4986400972576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.11304807586337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.076933441677446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.130883314010753,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02769603900388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.184645286686103,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.184645286686103,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1598,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.29959375458862E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,9.29959375458862E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.05653174098184E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,7.75586119132691E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.54373256326171E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.4644104305066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.9833535305502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,84.0587160993877,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.9140072709981,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014015526517203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011502939894182,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016226245026019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004141058361905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.563654033041788,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.563654033041788,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.3431,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000283882335666,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000283882335666,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000215409916304,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000236757867946,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.71244677206206E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,47.7208336189232,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,82.0610230248272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,55.3561669979509,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.5419682889378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.028837421980259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.028155136999818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.033354440414559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010135849319935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.515063168124393,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.515063168124393,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.3196,Mm²,,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000259409720523,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000259409720523,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000196840095933,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000216347706916,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.3062013606774E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,42.2860028366352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,74.4082006282606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.44073054950172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.0517632904969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.7869522261738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.81921090994691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.023552156165843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023780860920792,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027231891473504,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008561109931485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.9047619047619,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.9047619047619,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.9917,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000307692307692,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000307692307692,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000161292307692,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0001464,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000256615384615,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,5.10769230769231E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,109.421259750065,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.928661310075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.249778011383297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.088826317317272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.287674664992609,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031977474234218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.58503401360544,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.58503401360544,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.3207,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000417582417582,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000417582417582,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000218896703297,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000198685714286,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000348263736264,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,6.93186813186813E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.1492966124259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.299863976064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.613184070414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.987951031383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.273655559718809,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.110014130353188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.314634110986083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.039605086927148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.612244897959184,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.612244897959184,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.3666,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.89010989010989E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,9.89010989010989E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.1843956043956E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.70571428571428E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,8.24835164835165E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.64175824175824E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.446338647604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,84.1328626158246,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.8377528312206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.2878305416969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.060709307065574,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030843107434961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.069758137127917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011103518676586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.573372206025267,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.573372206025267,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.3478,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.26216640502355E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,9.26216640502355E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.85522762951334E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.4069387755102E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,7.72464678178964E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,1.53751962323391E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.446338647604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,74.4575834150048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.8377528312206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.8047300294017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.056854747886807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025896347511739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.065329049056304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009322685104226,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.077745383867833,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.077745383867833,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.1081,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.25588697017268E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.25588697017268E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.58335949764521E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,5.97551020408163E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,1.04740973312402E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.08477237048666E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.72892325646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.782304214185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,86.6855509774936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.3216295171066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.00749785185482,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007002967085553,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.008613107000081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002521068150799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.281827016520894,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.281827016520894,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.2068,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,4.55259026687598E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,4.55259026687598E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.38646781789639E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.16612244897959E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,3.79686028257457E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.55729984301413E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.4220952047172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.204003762029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.209630437472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.3534413543304,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.02512045142367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015138587977988,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.02883376947723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005449891672076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.155490767735666,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.155490767735666,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1457,Mm²,,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,2.51177394034537E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.51177394034537E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.31667189952904E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.19510204081633E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,2.09481946624804E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.16954474097331E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,66.8937088786614,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,67.5411867520976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,21.712196226166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,77.5967022992473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.3148272307551,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.1005378110443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013777400210663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009840750909781,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015812981941348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003542670327521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.1865889212828,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.1865889212828,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.128,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000426136363636,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000426136363636,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000203821022727,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000222315340909,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000355397727273,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,7.07386363636364E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.727866203283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.404324795808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.224179244990942,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.101034673725807,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.258867518740596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03637248254129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.17589893100097,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.17589893100097,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.6392,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000229166666667,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000229166666667,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000109610416667,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00011955625,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000191125,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,3.80416666666667E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.3495864745818,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,86.8826538244969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.3255203105148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.2777553768189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.086012728467501,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.055535392324618,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.099139969203117,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019992741236863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.174927113702624,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.174927113702624,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.1551,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,3.40909090909091E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,3.40909090909091E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.63056818181818E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.77852272727273E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,2.84318181818182E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,5.65909090909091E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.5560479967218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7514803627418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,64.4450156761972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.5905329305871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.011606907843026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013610254604261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.013369580661998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004899691657534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.155490767735666,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.155490767735666,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.1457,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,3.03030303030303E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,3.03030303030303E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.44939393939394E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.58090909090909E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,2.52727272727273E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,5.03030303030303E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,53.7444377359591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.7514803627418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.3435477737125,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.5905329305871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010035562745739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012785390688852,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011557312842025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004602740647987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.447035957240039,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.447035957240039,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.2867,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.71212121212121E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,8.71212121212121E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.16700757575758E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.54511363636364E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,7.26590909090909E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,1.44621212121212E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.9328274751964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,67.5686398793112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,60.2420798712279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.324710356552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.028042387966934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.019371929053399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.032287842705424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006973894459223,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.728862973760933,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.728862973760933,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.423,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000142045454545,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000142045454545,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.79403409090909E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.41051136363637E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000118465909091,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,2.35795454545455E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,27.0231863897098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3525630636216,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,31.3468962120633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.4869227029038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.027565569651811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.032297134175912,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.031582592313135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011626968303328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.262390670553936,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.262390670553936,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1974,Mm²,,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.11363636363636E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.11363636363636E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.44585227272727E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.66778409090909E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,4.26477272727273E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,8.48863636363636E-06,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,22.6602250117063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,70.5828260505067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,10.7967751725744,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,26.2858610135794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.4098173781824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.9844204415576,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.008778804713077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01393304986237,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010041764813301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005015897950453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.004,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,1.31195335276968,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.31195335276968,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.705,Mm²,,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001202672605791,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.001202672605791,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000481069042316,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000721603563474,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001003028953229,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000199643652561,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,206.85569827475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.5697462108215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,239.95260999871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.2451086358957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.2818141036044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.063146671078629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.326382906345438,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022732801588307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,0.923226433430515,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.923226433430515,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.517,Mm²,,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000846325167038,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000846325167038,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000338530066815,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000507795100223,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.00070583518931,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000140489977728,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.859704888934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,92.9286116937273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,132.077257671163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.4543002097418,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.11245726916544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.048044092245657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.130083483236442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017295873208437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.340136054421769,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.340136054421769,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.235,Mm²,,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000311804008909,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000311804008909,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000124721603563,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000187082405345,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.00026004454343,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,5.17594654788419E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.826954081184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,96.2874771766331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.479266734173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.6634917835879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.035978308880729,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022627557136509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.041599646566473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008145920569143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.320699708454811,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.320699708454811,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.2256,Mm²,,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000293986636971,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000293986636971,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000117594654788,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000176391982183,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000245184855234,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,4.88017817371938E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.55,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.4125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.8637369728402,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.005208142445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.561934888495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.0818749312801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032010003528017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023237974956936,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.037004137599337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008365670984497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.495626822157434,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.495626822157434,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.3102,Mm²,,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00045434298441,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00045434298441,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000181737193764,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000272605790646,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000378922048998,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,7.54209354120268E-05,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.9005198644964,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,107.125416468142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.6446030428158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,38.5651499285313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.046514475107147,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033230304188418,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053759797453039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01196290950783,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.767735665694849,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.767735665694849,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.4418,Mm²,,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000703786191537,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000703786191537,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000281514476615,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000422271714922,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000586957683742,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000116828507795,1e6 dimensionless,Own calculations,,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.365,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,38.3306537673034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,98.347581339482,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.94927402815915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,44.463558370072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4051292822135,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.82369417125666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.035530751174359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.043449961435783,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040910524302867,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovakia,sk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015641986116882,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,63.1524866420058,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.85,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.52,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.65195,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.05015,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.1479,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,0.715454545454545,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,6.77490067132484,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,7.09085033566242,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.913732,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.091186679683263,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.064125902548627,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.069940183317063,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005380014101313,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.015866482264888,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.12377125891244,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.012395947202101,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.035,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.79969666329626,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.33832153690597,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.61630940343782,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.11795753286148,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.138523761375126,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,WALLS,construction material,concrete,,0,0.230535894843276,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.630940343781598,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.769464105156724,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.230535894843276,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.769464105156724,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.230535894843276,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.769464105156724,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.230535894843276,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,174.002476415953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.4858099439961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.8855924173858,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,200.137648373629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.1804257799069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.8438163986687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.31484723443375,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.12087853197974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.68908400961632,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03257676436854,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,25.9624606110426,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,16.6846303055213,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,6.590811,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.349441371081462,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.150886977779059,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.268021531619482,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020617040893806,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.060802798568175,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.265412601471347,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.050457457718874,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.055627376389243,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.21539577836412,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.7720765171504,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.774221635883905,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.14763852242744,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.824538258575198,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.175461741424802,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.130079155672823,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.869920844327177,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.045382585751979,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.954617414248021,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.824538258575198,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.824538258575198,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.175461741424802,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.130079155672823,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,183.21296164317,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.7609309118157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.5397575805316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.731548481974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.1055708807343,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.5007179477055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.42333204577478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.393873000823835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.96958889273489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.086148773722024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,7.17221537196876,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,7.28950768598438,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.23767,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.096534331272372,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.065922454624088,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.07404183208591,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00569552554507,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016796973641393,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.086223655527376,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.012592840225601,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005368113469006,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.85523400191022,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.56865329512894,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.671938872970392,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.709264565425024,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.651384909264565,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.348615090735435,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.163323782234957,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.836676217765043,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.651384909264565,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.651384909264565,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.651384909264565,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.348615090735435,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,140.20366882467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.1316002674454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.7434679090684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,161.262259882136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3969662720765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.596377629688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.12196986807719,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.127841667970455,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.45951623117997,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034453329518038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.08288806685847,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,6.24484403342924,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.753635,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.068413059984814,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.056475068710028,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.052472817008352,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004036370539104,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011903872437358,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.069626922927904,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.007448368766362,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,-0.003606784877253,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.513301886792453,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,1.80176549865229,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.453490566037736,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.540256064690027,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.508086253369272,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.491913746630728,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.491913746630728,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.491913746630728,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.508086253369272,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.508086253369272,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.152291105121294,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.339622641509434,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.508086253369272,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.847708894878706,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.508086253369272,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.508086253369272,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.491913746630728,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.491913746630728,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,114.073098397314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.8764799206989,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.7396373326072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,131.206877776591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.3637113386283,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.3307085960692,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.788634504601639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.080450600865735,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.02944585334579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021681436933316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.78147691464584,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.09413845732292,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.683807,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.064356220848248,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.05511216713554,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049361221390606,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003797017030047,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011197982427595,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.035074506982195,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.005817161401943,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.028162091555977,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.335042979942693,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.28373925501433,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.297521489971347,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.241532951289398,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.477077363896848,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.522922636103152,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.522922636103152,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.522922636103152,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.477077363896848,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.477077363896848,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.150429799426934,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.372492836676218,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.477077363896848,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.849570200573066,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.477077363896848,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.477077363896848,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.522922636103152,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.522922636103152,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.8660891792139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.4517527907056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.9552018636025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,105.664375773932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9797473770952,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,41.706006444532,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.638441646963364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.07484817251126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.843349642989539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020171582491785,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,8.50801479654747,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.95740739827374,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.547135,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.114513504718516,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.071962586601929,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.087831858119102,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006756296778392,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.019925349821022,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.104404454953321,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.014807552723835,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004159713614595,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.248816425120773,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,0.923470209339775,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.172938808373591,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23243961352657,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.706119162640902,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.293880837359098,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.706119162640902,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.706119162640902,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.293880837359098,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.293880837359098,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,84.459316814312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.2546738507755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.3629717397702,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.1451061998217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.926634602784,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.9339337989399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.816379519954643,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.112722628678895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10427367162973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030378748428962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,4.87053020961776,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,6.13866510480888,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.704438,Mm²,,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.065554832411325,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05551484260073,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050280556459486,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003867735112268,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.011406540839571,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.068413362900555,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.008202079147934,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.206638537271449,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,0.730323488045007,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.289704641350211,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.627285513361463,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.372714486638537,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.627285513361463,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.627285513361463,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.372714486638537,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.372714486638537,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.5108922638633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.8113697016273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.9109997060307,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,75.3506282818956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.84266413458856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,39.8880504881995,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.486356285644076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.055924945351502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.656828227365031,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01507177277223,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.52,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.39884,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03068,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.09048,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.47,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,4.27455815865187,Mm²,Episcope. Episcope Data Search. 2017 https://www.buildingsdata.eu/episcope-data/results,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.37177907932594,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.334477,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.074770680844095,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.057349112207421,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004411470169802,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013010098466873,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.010467895318173,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.04,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.028960182313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.0985808757004,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,231.223510001696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.1540675460013,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.723927164692962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.105281599786962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.930856150597637,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028373391142586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,21.4070420605562,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,11.9380210302781,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.535456,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.331211490636812,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.17,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.254039213318435,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019541477947572,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.057630799370805,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.23,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.046369608689154,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.054841881947659,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,198.026922211431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.0753633713912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.770565927588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.9988104285899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.64985388298004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.349150898626348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.95644930194324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.074096167179801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.67187285929579,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.5704364296479,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.658415,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.075155723661824,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.057644440048619,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004434187696048,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.013077095917157,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.010521801312655,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.004633922349169,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,170.75,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.0960791081685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.39665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.8128933196514,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.667030651200671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109614729034173,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.866499160588858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02954116947471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2.5825455541855,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.52577277709275,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.17438,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041004330070389,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.031450321163989,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002419255474153,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.007134753432248,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.005740606209855,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,162.65,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.2572356699917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,187.08003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8918250130628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.438601029873318,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.064892992426125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.563884670887583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017488661458841,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.28113440197287,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.37506720098644,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.104552,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.036139328064868,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.027718864625754,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002132220355827,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.006288243083287,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.005059505929082,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026079822135786,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.4,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.0983922318148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.98608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5795167064741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.337083606983546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.059754487336436,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.43692698468725,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016103834337169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.0076722838745,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,4.23833614193725,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.96788,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.096195731454156,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.073782126025338,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005675548155795,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.016738057273023,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.013467402403582,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002728329050574,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.0587884912183,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.8698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.9518434983833,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.512800510139277,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.094573928696099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.695152632122469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025487673783599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.05521304288259,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,2.76210652144129,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.283883,Mm²,,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.051474393055371,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.03948085947347,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003036989190267,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.008956544391635,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.007206415027752,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,83,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.0425586824292,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,20.32,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.4666,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.90496956491467,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,35.37712,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.275808738342328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042422779368873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.37177355688345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011432939039911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.26508448359716,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,0.087291452111226,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.203319798919022,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015639984532233,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.046124700145906,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,0.245454545454545,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.938484723934785,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.70374236196739,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.217419,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.016415998839168,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012591071109642,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000968543931511,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002856383798015,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.015200367364292,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.0005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000715631474877,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.46,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.798295949628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.3094563511646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.993600001262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.51589848663885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.230360168013707,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007676946690414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.294998507619795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002068937133067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.17824359501302,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.82362179750651,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.272964,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01822988044465,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013982318301047,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001075562946234,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003171999197369,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.016879928079956,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000349952364694,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.598485288558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.1855904062916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.6609777789,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9080166144956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.226539222834275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012061075499663,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.294219250298657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003250459847159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.32894917111933,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.89897458555967,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.307878,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.021378607610548,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016397392037291,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001261337849022,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003719877724235,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.019795486866265,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000583120744283,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,83.1280582450127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.3815329540943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.6138925934136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8828231311284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.183755348408116,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012432585602841,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.244666900716459,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003350581819966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.72626387176326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,2.09763193588163,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.399924,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.027408729914425,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021022495844364,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001617115064951,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00476911900511,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.025379068783427,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001029661130998,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.899147974814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.1873157632101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.4968000006311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.75248159818512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.171461749308639,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014472176069286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.236132298067944,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003900251450673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.78106589943828,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.12503294971914,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.41262,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.02821689278338,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021642356764853,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001664796674219,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.004909739344308,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.026127385874495,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001989506908885,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.47,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.7104938276474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.6508461225156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.2284100005601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.60790303001796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.160072294636028,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014710252127072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.223177585716893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003964412948246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.14399232771613,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.80649616385806,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.265029,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.01831777326436,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014049732093764,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001080748622597,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003187292547999,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.016961312293087,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001256460971274,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.5218396804809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.1143764818211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.9600200004891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.46332446185079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.114228562179247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009306328084601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.157214849507706,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0025080554188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.835730922044116,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.65236546102206,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.193614,Mm²,,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.014080439355954,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010799696986016,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000830745922001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002449996447936,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.013037759868163,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00094267948779,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,0.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.0763939607804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.4222742848815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.4950683336896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.73780291977557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.078011162778962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006277406213393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.108245548314898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001691760974509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-10.9,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.06491551640284,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.054545454545455,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.56185778873818,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.01542889436909,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.361836,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.010200370599482,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007823684249802,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000601821865369,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00177486448431,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.008570891548149,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001428051883927,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000201427167405,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.77,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,127.798295949628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.3094563511646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.993600001262,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.51589848663885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.284164439155703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01277623244828,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.3704122059122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003443194644811,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.37717495547335,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.92308747773668,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.782391,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.022056064498002,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.016917001469967,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001301307805382,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.003837755222652,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.018532673391392,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.00308784902972,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00043554207689,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,113.598485288558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,44.1855904062916,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.6609777789,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9080166144956,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.401552225483657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.034570408263569,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.542281841618567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009316725027032,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.17139334155364,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.82019667077682,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.271377,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.007650277949611,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005867763187352,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000451366399027,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001331148363232,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.006428168661111,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.001071038912946,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000151070375554,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,83.1280582450127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.3815329540943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.6138925934136,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.8828231311284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.173487933300039,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010958619268483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.229653881865287,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002953347892856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.774078640909714,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.62153932045486,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.179331,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.005055446832199,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003877527720297,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0002982713631,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000879647748803,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.004247854144477,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.000707762556508,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,9.98301312140898E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.62,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.63,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.899147974814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.1873157632101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.4968000006311,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.75248159818512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.118077650578446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006489507523132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.155931229468992,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001748922277484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.71927661323469,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.59413830661735,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.166635,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.004697539091866,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003603012483462,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00027715480642,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000817371801985,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.0039471211077,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.000657655472861,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,9.27625113051275E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.49,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,56.7104938276474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.6508461225156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.2284100005601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.60790303001796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.104156269431796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005940678743625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.1381343833956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001601012921407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.35635018495684,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.91267509247842,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.314226,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.008858216573234,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00679425211167,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000522634777821,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001541329683743,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.007443142660234,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.001240150320253,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000174923592747,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,49.5218396804809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.1143764818211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.9600200004891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.46332446185079,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.124689166069314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011033850064377,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.173345561180342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00297362259235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.979586244691054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.72429312234553,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.226941,Mm²,,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.006397600858447,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004906959858429,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000377458450648,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00111318254937,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.005375603032391,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000895664120183,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000126333705873,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.0763939607804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.4222742848815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,27.2717010980673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.4950683336896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.73780291977557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,47.4800316117352,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.084181824529579,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007357943348485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.118060446803391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001982965732417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.075,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.95488534560697,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.95488534560697,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.1575,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.008029585985509,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.005297201932835,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003678744085584,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.004324847333111,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.007274126147009,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000755459838499,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,229.988390056845,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.42850030033421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,264.486648565372,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.0796133603575,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.2855009010026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.460213029067612,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.074070187373621,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.548877360446385,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015139652464614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.97691131749815,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.97691131749815,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.1425,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.0371619199144,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.008066611384839,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017597065907055,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.019475839373995,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.033550476266511,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.003611443647888,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.33680868994202E-18,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,215.760859754454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.5783104997596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.31589313307245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,220.076076949543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.4313241999039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,15.9476793992173,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.658125887706619,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.055500719745975,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.622621791473051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03220028789839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,5.6782016931043,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,5.6782016931043,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.5,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.049446402180622,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.015386365779114,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.02315600373942,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026267651584278,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.044720908802452,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.00472549337817,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.258419724954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.7331374562905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.34891936548253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.983588119453,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.8932549825162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.0467580964476,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.80407503257931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.114332843640726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.880293574365671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.049733137456291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.01932933344292,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.01932933344292,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.1225,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.042848891911698,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.013601002793539,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020197994480272,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022619415646834,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.038663112578176,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004185779333522,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.769147294323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.7274648531392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.37963451403663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.424530240209,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.4909859412557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.1389035421099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.693414232910105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.103424044150788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.760746789060929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.041369617660315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.86960713405112,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.86960713405112,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.0775,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.041995372074719,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.013195296788433,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.019875116827895,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022025817698134,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.037838718253444,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.004156653821275,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,130.512589388205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.6409372664808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.37982539039321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.122841175969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6563749065923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.1394761711796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.661742672469294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.096896547171114,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.726848845398676,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.038758618868446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.3084794937125,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.3084794937125,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.5,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.049486630589428,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.017094245369652,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.023337930845436,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026079579743992,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.044634785472291,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004851845117137,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,8.67361737988404E-18,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.492670141447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.8461061118063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.44599751570051,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,126.982523544276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3384424447225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,16.3379925471015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.819715420355441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.114615265279516,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.904134536790749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.045846106111806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,0.87066984466179,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.87066984466179,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.6225,Mm²,,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.003530765744303,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.002359275951589,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001662658904877,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001843986839426,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.00316540658836,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000365359155943,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.33680868994202E-19,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.3934337867495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.5049075706817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.90052625531445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.2413024624844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.4019630282727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,20.7015787659434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.086452256765678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023969304962749,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.100077300544134,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0095877219851,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.013,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,0.147941152297197,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.147941152297197,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.17,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001991211845156,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000972507865174,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001018703979982,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.001785121419182,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.000206090425974,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,428.189955598968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,436.753754710948,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.063914529737689,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027941193825931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.066316696654941,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003176477530373,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.65200953398537,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.65200953398537,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.6275,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022235198937575,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001749550355752,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010859671161112,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011375527776464,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.019933855847536,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.002301343090039,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,272.98024934617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4430015183301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,278.439854333093,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3772006073321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.457304334240835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.027260483452752,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.399000373193544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020904193381101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.02186241472836,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.02186241472836,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.74,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027213228550465,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001862242624855,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.013290940824047,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013922287726418,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.024396659395492,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.002816569154973,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.459247046204,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.8774315335134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.168431987128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5509726134054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.281637355822113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0224692993348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.302629746012692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01298771973392,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.94789183857977,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.94789183857977,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.7175,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.026217622627887,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.001855967623635,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.01280468689146,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.013412935736427,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.023504098685901,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.002713523941986,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.760755196215,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.3672370108324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.455970300139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.1468948043329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.269972963547395,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.028963492555272,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.290170127731231,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011585397022109,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.87392126243117,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.87392126243117,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.695,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.025222016705309,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001779881979202,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.012318432958873,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012903583746436,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.02261153797631,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.002610478729,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.062263346225,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.8570424881513,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.74350861315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.7428169952605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.258411906961835,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025615644529265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.277815911852711,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010246257811706,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.20267937864716,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.20267937864716,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.795,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.029646931916767,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000714539149839,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.014479561548149,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.015167370368618,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.026578474463382,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003068457453385,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.665279646247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.5399086642177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,135.318585239172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.4159634656871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.300670222047592,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026664227388053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.323416896179067,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010665690955221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.106846387770198,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.106846387770198,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1575,Mm²,,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001438097443724,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00014,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000702366791515,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000735730652209,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.001289254358298,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.000148843085425,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.0062622758495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.1751457004121,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.8263875213665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.2700582801649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010133634052853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005225085447815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.011147995189047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002090034179126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.053,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.369852880742993,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.369852880742993,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.3675,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00497802961289,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.008041534449487,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002215223177736,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002762806435154,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.004604677391923,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000373352220967,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,252.536115474758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,257.586837784254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.095074401219352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.017166992535469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.100288808254088,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.006866797014188,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.953398537026383,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.953398537026383,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.1125,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012832254113228,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.012270540994268,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.005710353080386,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007121901032841,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.011869835054736,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000962419058492,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,225.328653621381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.3911310730244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,229.835226693809,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.3564524292097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.219141124371564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006569002245715,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.152063915863448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002627600898286,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.45473822634996,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.45473822634996,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.75,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01958002856494,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.008632025534354,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.008713112711398,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.010866915853542,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.01811152642257,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001468502142371,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,164.747732894032,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.9750423837546,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.042687551913,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.5900169535018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.246245969964225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.044231281787816,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.264201556896701,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017692512715126,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.05202597189118,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.05202597189118,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.445,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014159728676665,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.008324800663648,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006301079261116,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007858649415549,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.013097749025915,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00106197965075,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,160.918070682022,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,63.693045774455,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.136432095662,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.477218309782,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.17404928974142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.028343405369633,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.186953689610128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011337362147853,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.01093120736418,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.01093120736418,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.4325,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013606614275233,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.010237995618478,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006054943352479,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007551670922754,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.01258611820459,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001020496070642,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,157.088408470011,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.4110491651553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.230176639412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.3644196660621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.163378964317111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02958777876393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.175701855565072,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011835111505572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.23284293580998,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.23284293580998,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.5,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016593432042967,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00738407725912,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009209354783846,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.015348924639744,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001244507403223,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,149.42908404599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.0951596568069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.41766572691,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.6380638627228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.189799895401881,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.034547579828404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.204638956677745,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013819031931361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.106846387770198,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.106846387770198,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1575,Mm²,,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001438097443724,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000639953362457,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000798144081267,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001330240135445,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000107857308279,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.226047642085,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.52393777765494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.910568594927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.5718133329648,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.014824934745267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007357282515201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016078498932051,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00294291300608,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.24,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.27,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.1925,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000107771835875,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000107771835875,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.17772690622526E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,8.98817111200826E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,1.78901247553162E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,130.892555502826,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,133.510406612882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.036124375666754,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008992234185246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.038397966828452,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003596893674098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.27,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.24,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.06,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000369049060322,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000369049060322,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000280034426972,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000307786916308,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,6.12621440134139E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.317013060504,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.9170662956772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.363353321714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.3668265182709,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.025437392025636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003055023977741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.027691131470557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001222009591096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.64,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.64,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.285,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,9.43070353406619E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,9.43070353406619E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.15601784164942E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,7.8652067474112E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.56549678665499E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,106.556136012163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.426236958634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.687258732407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.5704947834536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.070284955530428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014656477533211,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.075826931036671,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005862591013284,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.54,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.26,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000130521494995,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000130521494995,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.90397104022913E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000108854926826,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,2.16665681691887E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,104.267973055302,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.426236958634,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,106.353332516408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.5704947834536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.058067323232094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013370821609245,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.062718652905552,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005348328643698,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.53,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.53,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.2575,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000391532125581,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000391532125581,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000297094576891,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000326537792735,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,6.49943328464479E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,101.97981009844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.5411529798028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.019406300409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.0164611919211,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.055779276064363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009666846892299,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.060320215475785,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00386673875692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.81,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.81,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.3275,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000286567164179,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000286567164179,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000217447164179,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000238997014925,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,4.75701492537314E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.4034841847172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.7969143969752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.3515538684115,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.1187657587901,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.081540748862967,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014015989465009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.088406538653451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005606395786004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.32,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.32,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.08,Mm²,,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.588E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,8.34E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.66E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.9810699876199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.8076440362254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.26410700413078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.7406913873723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5230576144902,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.79232101239233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.02919845663736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003104611522898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.031850563967925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001241844609159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.057532670337799,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.213692775540396,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.065,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000132653061224,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000132653061224,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.95367346938776E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.31163265306123E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000110632653061,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,2.20204081632653E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,139.659832516485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.453029166814,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.031287336592667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003036338815797,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03477030123893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001214535526319,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.213692775540396,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.057532670337799,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0175,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,3.57142857142857E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,3.57142857142857E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.87214285714286E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.69928571428571E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,2.97857142857143E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,5.92857142857143E-06,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,107.403960602495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.4430015183301,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.552039814545,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.3772006073321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.011539097103819,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000760252526571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.02238240272799,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000304101010628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.312320210405194,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.312320210405194,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.095,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00019387755102,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00019387755102,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000101630612245,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.22469387755102E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000161693877551,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,3.21836734693878E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.499827888164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.8774315335134,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,99.4498244459273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5509726134054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.038284808950082,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004168355995684,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.054561116664451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001667342398274,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.287663351688995,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.287663351688995,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.0875,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000178571428571,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000178571428571,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.36071428571428E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.49642857142857E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000148928571429,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,2.96428571428571E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.2261164868195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.8315269071594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.1306388165559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.5326107628638,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.034608260590486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003397758604376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.049586515374345,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001359103441751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.279444398783595,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.279444398783595,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.085,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000173469387755,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000173469387755,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.09326530612245E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.25367346938775E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000144673469388,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.87959183673469E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.9524050854749,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.7856222808053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.8114531871844,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.5142489123221,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.032984077229487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002871777893868,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.047521674358354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001148711157547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.369852880742993,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.369852880742993,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.1125,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000229591836735,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000229591836735,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000120352040816,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000109239795918,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000191479591837,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.81122448979592E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.4049822827859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.17775317731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,90.1730819284416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.271101270924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.041973518909614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004294997232447,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.061180818737584,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001717998892979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.090408481959398,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.090408481959398,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.0275,Mm²,,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,5.61224489795918E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.61224489795918E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.9419387755102E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.67030612244898E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,4.68061224489796E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.31632653061225E-06,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.9232637655518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.2682431681067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,25.0820854001628,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.6817290408629,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.1072972672427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,75.2462562004884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010216642071364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.000969876687123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.014910888778293,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000387950674849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.156160105202597,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.106846387770198,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.1575,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000149823585859,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000149823585859,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.16606211164098E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.81629647426949E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000124952870606,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,2.48707152526114E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,117.076868428554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,119.418405797125,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.013734364889399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007357282515201,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.016434798511782,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00294291300608,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.106846387770198,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.156160105202597,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.0475,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000669277177378,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000669277177378,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00032011527394,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000349161903438,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000558177165934,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000111100011445,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.5798990470588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.3115177126669,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,81.1714970279999,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.1246070850668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.01326544842208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002152297091352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.015190478559981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000860918836541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.328758116215994,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.328758116215994,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.225,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000418585207797,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.000418585207797,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000200209304889,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000218375902908,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000349100063303,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,6.9485144494328E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.3437034468024,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.7646328897936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.2705775157384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3058531559174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.034252983730993,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010297042400204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.040044877773182,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004118816960081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.304101257499795,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.304101257499795,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.2175,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000441920830197,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000441920830197,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000211370733083,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000230550097114,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000368561972384,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,7.33588578126743E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.9013905644259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,40.5017001074673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.7794183757145,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.2006800429869,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.03094129953243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008809119773374,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03628394731308,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00352364790935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.295882304594395,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.295882304594395,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.215,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000932534537104,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000932534537104,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000446031269097,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000486503268007,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.000777733803945,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000154800733159,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.4590776820495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.2387673251411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.2882592356905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.0955069300564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.029382411029538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007576334974905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.03456621018094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003030533989962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,0.476699268513191,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,0.476699268513191,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.27,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00056768558952,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00056768558952,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000271524017467,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000296161572052,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000473449781659,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,9.4235807860262E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,86.5744519172966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.8198070774094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,88.3059409556426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.9279228309638,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.045009831351903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010751347910901,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.053314937811916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00430053916436,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.213692775540396,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.213692775540396,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.065,Mm²,,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.0002,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0002,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.566E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00010434,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.0001668,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,3.32E-05,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.0942314981313,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,36.719038193998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,7.8453098169459,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.6361161280939,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6876152775992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5359294508377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.018150966336747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00238673748261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.021833428002402,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000954694993044,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.263006492972795,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.263006492972795,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.205,Mm²,,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000670096044504,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,1,0.000670096044504,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000268038417801,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000402057626702,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000558860101116,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000111235943388,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,1.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,264.020284925617,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.7129048584195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,269.30069062413,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6851619433678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.070448141308484,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009576145495976,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.073855106485761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00383045819839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,0.501356127229391,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,0.501356127229391,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.2775,Mm²,,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001020426340182,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,1,0.001020426340182,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000408170536073,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000612255804109,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000851035567712,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.00016939077247,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.02,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.69,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,145.324842279157,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.4646387906102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,148.23133912474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3858555162441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.074783081924289,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013448937264394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.080087435544573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005379574905758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.920522725404783,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.920522725404783,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.405,Mm²,,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001946375271058,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,1,0.001946375271058,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000778550108423,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001167825162635,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001623276976062,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000323098294996,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,141.047181846119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.2163727228009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.868125483041,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.0865490891204,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.133368958581469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020337630952734,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.143029345981974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008135052381094,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.887646913783184,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.887646913783184,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.395,Mm²,,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001720526853383,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,1,0.001720526853383,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000688210741353,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00103231611203,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001434919395721,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000285607457662,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,137.85820526203,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.7198405871824,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.61536936727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.487936234873,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.12577509626628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021219337031937,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.135033856126593,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008487734812775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,0.879427960877784,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,0.879427960877784,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.3925,Mm²,,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001669205043737,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,1,0.001669205043737,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000667682017495,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001001523026242,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001392117006476,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00027708803726,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.66922867794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.8686342106697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.362613251499,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.3474536842679,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.12180603686696,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021928438927688,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.130922977965814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008771375571075,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.21640502999918,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.21640502999918,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.495,Mm²,,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002162422039261,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,1,0.002162422039261,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000864968815704,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001297453223557,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001803459980744,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000358962058517,1e6 dimensionless,Own calculations,,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.291275509762,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.2907695345446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.83675735573267,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.857101019957,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.5163078138178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.510272067198,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.160721203781485,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0253889309196,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.173176388730985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Slovenia,si,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01015557236784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,1752.5796,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,26.56,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,9.81,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,20.92928,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.21376,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.41696,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,14.8347234042553,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,271.6428,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,195.81317312,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,57.86032,Mm²,,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.11669334049078,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.52043030969002,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.24395435230674,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.498119894199385,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.374619093984661,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,3.82918943039543,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.717215247282172,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.613417245215725,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,3.27767506936806,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.95464610142437,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,3.1137032873072,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.27248454710868,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.526085002068893,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.354921437269826,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete + bricks,,0,0.118906530929588,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,0.256771024301031,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.243228975698969,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.743228975698969,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.256771024301031,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.8085155930486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.4365513782591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,115.321942469098,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.6351902794028,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.014314241566,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.90878041391077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,30.0884559512659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.848491246737773,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,244.3728,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,176.16786512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,49.57024,Mm²,,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.70342184058288,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.36789041030291,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.91829641037931,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.448114042710528,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.337011387493042,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,3.60490948555845,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.696651363384953,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.710319463178565,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.43219962287129,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.63806962149634,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,2.09484065329693,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.12263774037045,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.22962866571075,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.521652982656008,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.248718351633242,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.22962866571075,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.77037133428925,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,67.0600812704392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.3340284814994,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.5984508168665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.049080216636,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.3907361080534,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.8917846996517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,16.1144140539669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.44549963199476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,26.9077765047154,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.713352242652871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,224.7128,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,162.00480112,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,43.5936,Mm²,,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.40547839767164,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.25791848430546,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.68351697736525,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.412062886118268,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.309898534188119,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,3.58547957278465,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.650658911836707,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.444860881110345,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.3488207703344,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.47342857193716,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,2.31312728068895,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.989155437518468,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.411948051023351,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.060712162369033,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.527339786607617,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.411948051023351,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.588051948976649,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,0.411948051023351,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,0.588051948976649,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,61.5960123994533,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.8637127091879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.7395466231116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.75633828775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.8369449972701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.1154074429696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.9651529309685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.21733234635925,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.288921680017,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.646795845432995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,253.6828,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,182.87478912,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,52.40048,Mm²,,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.84451306405712,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.41996765501483,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.02947629447701,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.465186080750911,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.349850688829198,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,3.65696130091019,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.680968140414298,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.561121928562548,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.628746134937016,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.84076629554704,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.919472143953,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.21058302730812,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.613809056033756,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,0.479102248950264,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,0.520897751049736,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,42.3136174849463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.3458046884568,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.5392650796279,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,71.9627692566481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9775712276229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.7979812247023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.1875037498061,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.69054481166139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.2120459637306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.784831921561627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,250.4728,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,180.56230512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,51.42464,Mm²,,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.79586614382594,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.40201191328279,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.99114252133484,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.459299803402938,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.34542381908816,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,3.64753750827754,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.675253545001676,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.535148119394715,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.556845565666212,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.52548430009167,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.687167341124465,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.991149857389705,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.606065009853365,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,0.472426546914475,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,0.527573453085525,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.5464291571009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.3392801196549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.5591747792273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.6580120674815,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8088680109033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.8295361075974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.8998146907534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.43440543801241,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.7287153656723,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.71011606626822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,340.7928,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,245.62883312,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,74.68368,Mm²,,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.16464802397563,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.90723390494557,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.0697426428928,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.624922410901051,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.469982970181782,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,5.47856487812721,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.974496029520338,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.557701894657049,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.519847285506032,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,3.44810264477419,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.55406934653549,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.86881133932407,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.496732325330817,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,0.336978950259512,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,0.663021049740488,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,33.9793394828907,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.9393849005927,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.9631354333139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.7886626585523,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.1088185755029,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.4697733482591,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.468012728469,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.3562386413127,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.8968555511041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.979014811670914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,166.9028,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,120.35847712,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,22.71792,Mm²,,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.52937918939602,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.934547322458411,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.99315080124406,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.306054881916918,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.230173506235038,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.21998739259783,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.44748889106713,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,1.55186825638633,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.489340238749739,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.23232226181945,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.461521676089317,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.739988592162624,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.615944130356112,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,0.617561838387373,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,27.0051279537804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.6480877075688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.8275572967801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,45.9276211109943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.8570471842978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.2548955596667,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.22576530494077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.923440004693532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.2335997172796,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.269367449369103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,7.76,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.11488,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.93896,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.70616,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,7.37,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,139.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,100.5364,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,30.65232,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.2866108767127,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.23,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.58984937084961,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.397679916082236,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.299081589780855,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,2.5,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.456838911863065,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.329771964849631,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,3.97666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.72666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,3.40222222222222,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.43166666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,75.901376345808,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.085470751316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.8608608763478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.54096742045197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.512130964108,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.449500196545839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,112.23,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,80.891092,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,22.36224,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.38429734660081,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,1.55,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.66682630912144,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.409499978938698,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.307971058540674,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.45,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.470417331177513,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.463880015423298,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,2.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,flat roof,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.3048291866724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.780630081688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.574422997774,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.1044097948284,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.29002413232431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.15793087723793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.8910897160465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.337768436890303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,92.57,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,66.728028,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,16.3856,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.96805220531295,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.4,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.33882513778661,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.359134316842867,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.270092750683479,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,2.37,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.412559256538501,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.185492948774452,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,2.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.4320249968212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.987944912094,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.5799576012555,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.823744361423794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.0191731338428,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.240286230227321,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,121.54,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,87.598016,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,25.19248,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.00079452559778,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.07,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.36462608617105,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.363096137597332,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.273072301829398,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,2.31,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.417110439058092,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.27368408653969,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.09,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,1.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.08,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,46.9205123001193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.7860792094878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.7977152688128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.3976993054076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.05304976729724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.32981224476344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.0694332267465,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.387906231797495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,118.33,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,85.285532,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,24.21664,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.9588705926302,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.05,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.33159002699259,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.358023341708254,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.269257223929348,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,2.3,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.411283012375597,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.247587580254598,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.57,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.98,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,47.2928973183742,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.7479353148894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.431030469359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.3446727313532,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.92499168502233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.10786128026396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.85758703089416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.323163135452998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,114.84,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,82.771336,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,23.15568,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.50365293504929,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.4,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.76087851281884,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.423942005140964,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.318832417089485,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.99,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.487007757971851,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026645177077436,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.525,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.03,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.655,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.93,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,43.4294027539794,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,73.8603852636928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.43051125711267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.16409291298053,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.02308467322531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.33956590271642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,63.83,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,46.023732,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,7.64864,Mm²,,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.57048517802188,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.32,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.23754232028124,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.190028706540648,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.142914151199991,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.218297439745042,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,1.30218773827684,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.88,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,31.6620361771241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.9857329282804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.847624926435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3357881180315,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.4775744004024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.384515920842721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.89545201402472,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.112163294109822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,10.5202005143362,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,2.1999045679729,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.28991800529689,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.27294426223468,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.95733824680459,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,7.46472340425532,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,35.2328,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,25.42230912,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,9.50304,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.830082463778087,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.654104981457132,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.100439978117148,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.075537504203806,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.588994096299048,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.115381462465154,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.125706905013885,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.46666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.6325,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,59.2650756552697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,100.792114166917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.1749559602491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.477741163972315,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.62155835889024,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.139357097530724,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,10.5828,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,7.66444912,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.00944,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.319124493982064,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.251470101257867,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03861406377183,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.029040328952368,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.226438277089186,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.044358304663507,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.048327912229371,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.8112046109554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.2561090065891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,94.9181156818518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.784606997222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.628498231312185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0949583156822,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.04564170239479,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027699340684498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,13.6428,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,9.86887312,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.93968,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.437426192358686,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.344691839578644,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.052928569275401,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03980578350464,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.310380541823752,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.060802240737857,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.066243409797076,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.64,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,51.2029400100508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.2779055177882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,87.0808400750934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.9577650395388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.764093937687155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.150740633292532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.269527995703,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043971042731432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,34.1728,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,24.65868512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,9.1808,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.843718538459338,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.29,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.664850208305958,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.10208994315358,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.0767783869998,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.598669722317449,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.117276876845848,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.127771939296041,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,4.535,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.39,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,38.076368116565,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.0210941080385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,64.7564792558422,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.5911531513148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.58710782428492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.45923366078708,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.62413333601514,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.133958458851591,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,33.4728,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,24.15440512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,8.968,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.836995551195741,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.4,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.659552494342244,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.101276461694685,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.076166595158812,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.593899353130598,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.116342381616208,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.126753816448935,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.955,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,36.4006355344179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,48.7642826982887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,61.9065608533846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.2245412630908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.51415264765751,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.437318087238254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.50159602502248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.127565686047399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,54.4428,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,39.26119312,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,11.14464,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.66099508892634,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.5,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.30886413007396,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.200980405760088,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.151150553092297,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.17857724268329,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.230878317360762,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.251539528882293,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.6625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.7675,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,29.1763661802726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,42.2288633675903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.6202459627896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.3181594443261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.1781779146523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.470625479840981,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.58484295501166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.137281452469614,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,38.9728,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,28.11660512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,7.33856,Mm²,,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.958894011374137,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.755608480962821,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.116026175376271,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.087259355035047,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.680393739563287,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.133286267581005,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.145214004229846,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.45,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.56,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,24.1212395574621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,34.687994909092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.0229921153758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.1184881149821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.41744911980998,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.254559931920066,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.3250515231598,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.074255132141083,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,769.22,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,8.27979948566384,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,5.87527659574468,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,96.91,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,69.854564,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,17.70496,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.04312858240254,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.80007962270275,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.06154458636175,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.181504373338042,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.74019533409638,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.144994872953953,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.157938375352209,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.46333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.09666666666667,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.87333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.07333333333333,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,other,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,aluminium,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete + bricks,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,0.6666,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,59.2650756552697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.2724563899884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,100.792114166917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,14.6644755289596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.97813902864427,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.890071829486489,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.95415713765204,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.259633952661209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,121.56,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,87.612424,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,25.19856,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.30845847153909,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.00358764767048,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.077199049820806,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.227671774047801,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.928471208469259,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.181875727543933,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.198111535525895,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.59,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.91,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.8112046109554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.2561090065891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,94.9181156818518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,13.784606997222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.19552272431921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.19078589816908,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.9704175857788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.347352246495919,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,118.5,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,85.408,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,24.26832,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.27552096806007,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.24,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.978324582502072,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.075255737115544,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.221940648442452,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.905099030960901,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.177297414560349,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.193124522538817,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.92,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.2029400100508,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,51.2779055177882,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,87.0808400750934,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,14.9577650395388,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.62086597626047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.24442862003545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.999820178879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.36299982846434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,97.97,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,70.618188,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,18.0272,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.05453830582991,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.808830880571544,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.062217760043965,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.183489665214405,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.748291578592739,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.146580824510358,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.159665902726818,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.53,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,38.076368116565,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.0210941080385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,64.7564792558422,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,14.5911531513148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.5471933648665,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.901740267704431,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.518219545306,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.263037636089382,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,98.67,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,71.122468,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,18.24,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.06207302884799,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.814610013126409,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.062662308702032,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.18480070701955,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.753638155146938,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.147628151009871,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.160806722691182,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,1.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,36.4006355344179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,48.7642826982887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,61.9065608533846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,14.2245412630908,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.46048998088163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.889460516416787,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.36922554226535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.259455632638777,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,171.51,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,123.596404,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,40.38336,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.84611477832896,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.4,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.41597003497832,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.108920771921409,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.32122397142924,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.30998763544392,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.256609954187726,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.279517188697321,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,3.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.51,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.86,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,29.1763661802726,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,42.2288633675903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,49.6202459627896,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,12.3181594443261,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.85932062577464,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.70534339176421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.2889229382355,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.49744866737762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,64.1,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,46.21824,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,7.73072,Mm²,,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.689965350655277,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.529203423952598,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.040707955688661,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.120053971014018,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.489593653034547,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.095905183741084,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.104466513879647,1e6 dimensionless,Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.37,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.71,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,0.5,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete + bricks,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,24.1212395574621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,34.687994909092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.9681457880342,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,41.0229921153758,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,1,10.1184881149821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,1,30.0626142594553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.33069938397727,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.268163176003616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.82302406913763,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.078223198440255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.967,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,83.2269894798938,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,83.2269894798938,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,81.07891,Mm²,,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.533614994266926,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.468465819568818,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.286482297163583,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.245822167241168,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.45610957405454,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.077505420212386,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.311229865055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.9334486397867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.246491793676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.8003459193601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.8424247402172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.95903476675309,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.4112835949442,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.65869807871161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,50.2113853111788,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,50.2113853111788,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,52.896895,Mm²,,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.40969780451146,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.282628482881381,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.239430841944904,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.169866202995346,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.355641757178428,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.054056047333032,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,6.24500451351651E-17,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.7928158057649,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.064717998657,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.4559942794143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.989691879086,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,59.3136533593018,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.3679828382429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.08384301548531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.03366941117959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.6670007352414,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.13750809381339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,14.9837774063514,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,14.9837774063514,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,21.147005,Mm²,,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.121345499135691,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.08434027959883,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.071728544169632,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.049548626226906,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.105562784252948,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.015782714882743,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,94.1565205894235,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,114.372449625538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.39313026754419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.735301737991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,59.4736738052797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.1793908026326,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.47664603191445,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.4186347640935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.40003924325937,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.25769007732862,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,55.1076590305771,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,55.1076590305771,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,57.010445,Mm²,,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.50843060903497,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.310188495506196,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.275680338175353,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.23242167872077,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.437017309269271,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.0714132997657,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.2143795486184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,119.916610761866,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.24934904681645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.356641575364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.3566375961701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.74804714044936,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.65459835588843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.83649934242575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.6966550019873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.55497965806139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,59.6991446268804,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,59.6991446268804,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,60.99807,Mm²,,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.550706369633997,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.336032925015811,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.297720965664209,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.252627637762539,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.473150073406032,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.077556296227965,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.2050743185606,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,119.349006259974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.27519180821047,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.445518703133,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.0614832551867,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.8255754246314,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.62550561323129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,7.28005903827635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.6426318311256,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.7856306999037,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,71.3695801789401,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,71.3695801789401,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,70.962935,Mm²,,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.689035776186471,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.401723155910701,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.3815567307164,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.306944699375125,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.593959102930283,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.095076673256188,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,68.0433070832592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,117.227819026202,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.13946990341359,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.458307078998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,60.958465893625,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.41840971024077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.08028490950996,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.31883010174814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.6958124783511,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.32579165290903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,14.8559630321502,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,14.8559630321502,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,19.367265,Mm²,,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.162605771917209,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.083620841518263,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.103127269531063,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.059470824999725,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.143304898788265,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.019300873128944,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,4.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.0194003191701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,89.8372193071084,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.17914489132245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.594038724516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.7153540396963,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.53743467396734,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.0131550664935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.73990123318388,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.33433935999517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.02474864125562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,10.1368311867073,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,10.1368311867073,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,10.317455,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.153621687893061,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.025438315445942,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.107535181525143,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.046086506367918,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.137721843196129,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.015899844696932,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.076532020327,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,211.283727686142,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.96336515478143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.11005526282248,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.20133966679432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.592828736667692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,13.9514305378036,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,13.9514305378036,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,13.58311,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.211431192673966,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.035011029029287,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.148001834871776,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.06342935780219,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.189548064232211,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.021883128441756,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,106.688289097465,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,102.762880422053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.182416251245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.4366978194675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.51579337852659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.39583950868959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.4608085297653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.725836544518586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,4.40467997247075,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.40467997247075,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.431565,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.066752060830118,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.011053517269289,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.046726442581082,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020025618249035,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.059843222534201,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.006908838295917,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,115.779937086435,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.790509226273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,262.820457186206,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.9710647976621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.518604949623434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.563744897245603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.18353414269837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.293147346567714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,12.103038049356,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,12.103038049356,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,11.93769,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.183419167147042,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.030372499460925,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.128393417002929,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.055025750144113,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.164435283347323,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.018983883799719,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.871585075404,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,95.4872684881714,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,283.458498121168,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.6533796138492,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.53504257267232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.13989741015856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.50186006983771,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.592746653282451,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,12.869924294563,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,12.869924294563,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,12.65966,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.195041177738,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.032296995771203,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.1365288244166,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.0585123533214,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.174854415842117,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.020186761895883,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.442472343345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,87.1840277500696,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.544412219393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.3356944300362,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.34364667565601,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.10372014874645,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.06848841653512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.573934477348152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,18.2872873857045,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,18.2872873857045,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,17.285305,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.277140252553613,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.045891835091244,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.193998176787529,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.083142075766084,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.248456236414314,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.028684016139299,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.0133596112856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.3374652525633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,181.630326317618,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.2554819313329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.49906294011332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.37137228481746,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.42903288994764,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.713113588105079,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,7.94415495034903,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,7.94415495034903,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,8.453765,Mm²,,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.120392109711462,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.01993580793211,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.084274476798024,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036117632913439,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.107931526356326,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.012460583355136,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,4.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,74.2989359852832,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,78.472598822525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.95959288276069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.658584686593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.805751387713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.87877864828207,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.605809569613405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.663388909384903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.38655185895761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.46496223288015,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,1.29,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,16.2029298987317,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.2029298987317,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,15.505565,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.245552223767933,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.2454306164858,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.10927073957673,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.136281484191203,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.206263867965063,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.039288355802869,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.202683762007,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,252.430092139755,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.83473640403047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.7133295935176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.28888843072238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.890931388629151,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.1309605741815,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.1309605741815,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,8.61327,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.123223112291311,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.123162087277765,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.054834284969633,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.068388827321678,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.103507414324701,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.01971569796661,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,102.488187732353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,138.12215110491,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.648186152441,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,71.823518574553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.849850911148588,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.18968338044739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.94122372139288,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.61863535783264,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.07452561203421,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.07452561203421,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.44195,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.031439028649899,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.0314234587855,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.013990367749205,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.017448660900694,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.026408784065915,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005030244583984,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,93.7736917026993,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,139.503372615959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,212.866280165127,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,72.5417537602986,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.198751714708714,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.480163633375499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.454243918750398,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.24968508935526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,16.743683020352,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,16.743683020352,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,15.96729,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.253747231235916,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.253621565458324,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.112917517899983,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.140829713335933,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.213147674238169,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.040599556997747,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.344699643392,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,150.663642425235,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,173.3024681905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,78.3450940611224,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.31231746808259,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.40569007106004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.00379964493533,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.25095883695122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,18.3757742601514,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,18.3757742601514,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,17.36086,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.278481253775647,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.27834333872085,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.123924157930163,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.154557095845484,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.233924253171543,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.044557000604104,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.5102731212436,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,161.823912234512,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,160.058319985223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,84.1484343619463,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.33302356636987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.80940228495565,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.05322366992437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.46088918817694,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,21.7972667387671,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,21.7972667387671,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,20.28232,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.330333301027613,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.330169706765181,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.146998318957288,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.183334982070325,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.277479972863195,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.052853328164418,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.6758465990951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,163.442151356857,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.814171779946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,84.9899187055658,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.45405244007672,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.31498601530821,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.33303494392064,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.72379272796027,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.838560613509,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.838560613509,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.24047,Mm²,,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.027863025391143,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.027849226506581,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.012399046299059,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.015463979092084,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.02340494132856,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004458084062583,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,4.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,64.8815658496312,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.03217039693701,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.281154478663,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.09651119081104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.12302495996567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.358064549592741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.281994135091846,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.186193565788225,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.047,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,16.7830105201062,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.7830105201062,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,16.00087,Mm²,,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.020477029096478,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.020477029096478,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.019166499234303,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.017077842266463,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.003399186830015,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,98.7452402573214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,224.15169538412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.7193639344302,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.76805966716001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.94830484687481,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.919391026923206,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,5.13223871792351,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,5.13223871792351,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,6.052795,Mm²,,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006261868300153,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.006261868300153,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005861108728943,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.005222398162328,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001039470137825,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.0879367330286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,120.442515763481,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.039616383975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,62.6301081970102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.491614015898564,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.72901385720062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.12983143741659,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.379087205744322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.87503686953102,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.87503686953102,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.41776,Mm²,,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00106763654926,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.00106763654926,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000999307810107,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.000890408882083,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000177227667177,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,85.4306332087358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,121.646940921116,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.92753738383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,63.2564092789803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.077993861885988,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.294113107881437,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.179410469351095,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.152938816098348,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.20804247369974,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.20804247369974,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,5.263665,Mm²,,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005134252169474,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.005134252169474,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.004805660030628,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.004281966309342,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000852285860133,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.1160261601503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,105.224603896765,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.703379383541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,54.716794026318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.319043173493118,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.553867064670267,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.735598390664417,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.288010873628539,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,4.58165372136467,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,4.58165372136467,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,5.582675,Mm²,,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005590096988259,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005590096988259,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005232330781011,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.004662140888208,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000927956100051,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.6587757318684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,88.8022668724147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.585420911341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.1771787736557,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.326947858548472,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.495754195211958,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.754551546066546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.257792181510218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.84298495723134,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.84298495723134,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,7.513525,Mm²,,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008349157733538,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008349157733538,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.007814811638591,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00696319754977,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001385960183767,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.2015253035865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,101.234584234553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.53,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,52.6419838019675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.457816075651351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.760628579510918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.934986867855748,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.395526861345677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.098318749385508,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.098318749385508,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.754555,Mm²,,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000119959162838,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000119959162838,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000112281776417,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000100045941807,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.99132210311383E-05,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,4.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.0756149074111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,91.7995848108735,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.70145322299242,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.021645839823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.7357841016542,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1043596689772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.005778887831128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.161067420527842,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.01338373862047,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.083755058674478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.037,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.71929997050438,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.71929997050438,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,5.700205,Mm²,,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.012428271518545,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.012428271518545,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.006514899930021,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.005913371588523,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.010365178446466,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.002063093072078,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,98.7452402573214,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,224.15169538412,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.553349749864282,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.629859661071169,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.31986311070615,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.327527023757008,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1.75007373906204,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1.75007373906204,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.164915,Mm²,,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004608817354794,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.004608817354794,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002415942057383,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002192875297411,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.003843753673898,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000765063680896,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.0879367330286,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,102.762880422053,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.039616383975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.4366978194675,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.193549760170508,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.325235781690961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.463001984286081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.1691226064793,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.48461311572117,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.48461311572117,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.267645,Mm²,,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003909727081875,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003909727081875,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002049478936319,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001860248145556,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.003260712386284,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000649014695591,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,85.4306332087358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,103.790509226273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.92753738383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,53.9710647976621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.154307568556468,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.131569520068139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.370335755530786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.068416150435432,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.64192311473798,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.64192311473798,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.07257,Mm²,,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00432400279916,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.00432400279916,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00226664226732,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00205736053184,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.0036062183345,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000717784464661,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.1160261601503,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,91.8546006652519,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.703379383541,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,47.764392345931,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.148796478320163,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.282229690366033,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.359950886644847,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.146759438990337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.8778881132632,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.8778881132632,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.27405,Mm²,,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004945416375087,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.004945416375087,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002592387263821,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002353029111267,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.004124477256823,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000820939118265,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.6587757318684,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.9186921042305,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.585420911341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.5577198941998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.161810185751102,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.261657793883856,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.392679961438791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.136062052819605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.9172156130174,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.9172156130174,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,3.30763,Mm²,,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005048985304409,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005048985304409,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002646678096571,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002402307207838,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004210853743877,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000838131560532,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.2015253035865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,90.3081220777804,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.467462439141,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,46.9602234804458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.156653370628424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.298705853828129,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.381505317597929,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.155327043990627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.658735620882903,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.658735620882903,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.562465,Mm²,,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00173477956613,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.00173477956613,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000909371448565,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000825408117565,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001446806158153,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000287973407978,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,4.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.0756149074111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,83.3248900439497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,18.5072661149621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.021645839823,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.3289428228538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,55.5217983448862,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.048471664816626,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04686733427857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.118930397801352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.024371013824857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.196,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,10.8052305574673,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,10.8052305574673,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,10.89671,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.043175786730808,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.043175786730808,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.020650978793345,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.022524807937463,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.036008606133494,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.007167180597314,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.43087455424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,216.628085238125,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.08134247539294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.2040616201331,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.49128602682152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.626112042469214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.46524432209222,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.46524432209222,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,8.8987,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.033825616355983,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.033825616355983,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.016178792303067,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.017646824052917,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.02821056404089,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.005615052315093,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.4306814778367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,107.18278925741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,198.467646954689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,55.7350504138531,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.779442808903642,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.953787486764913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.79803930834238,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.495969493117755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.21217186117393,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.21217186117393,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.55948,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008839446782922,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.008839446782922,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.004227907396272,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.004611539386651,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.007372098616957,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001467348165965,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,79.4304884014333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,108.254617149984,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,180.307208671254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,56.2924009179917,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.185989343176301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.385330144653025,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.429696888835406,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.200371675219573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.229279323567,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.229279323567,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,8.69722,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.032882742032472,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.032882742032472,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.015727815514131,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.01715492651834,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.027424206855081,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00545853517739,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.4301022486266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,95.8053361777358,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.986332104382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,49.8187748124226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.560208709679458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.833240085911728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.29957778792213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.433284844674098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,8.89784681938846,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,8.89784681938846,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,9.26808,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.035554219282421,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.035554219282421,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.017005583082782,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.018548636199639,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.029652218881539,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.005902000400882,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,61.4357684031518,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,83.3560552054876,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,139.459194275155,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.3451487068536,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.587976207117736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.772550588128876,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.36487700012086,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.401726305827016,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,9.05515681840527,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,9.05515681840527,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,9.4024,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.036182802164763,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.036182802164763,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.017306234275406,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.018876567889357,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.030176457005412,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.006006345159351,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,59.4414345576769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,94.192342382201,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,1,117.715,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,48.9800180387445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.580312360861563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.885634080014407,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.19211033317105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.460529721607492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.38629436633566,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.38629436633566,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.183695,Mm²,,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005539386650631,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005539386650631,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002649488634997,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002889898015634,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004619848466627,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000919538184005,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,4.48,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.54,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.66,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,55.4527668667273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,86.8512086147672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,4.6449609072846,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.877780787471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,45.1626284796789,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.9348827218538,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.083313141442687,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.102805341381257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.19382150776536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.053458777518254,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.197,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,24.579687346377,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,24.579687346377,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,22.658105,Mm²,,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.058359995260102,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.058359995260102,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.023343998104041,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.035015997156061,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.048672236046925,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.009687759213177,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,5.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,106.402567916165,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,110.497720883928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.04825559540552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,241.533829169694,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,57.4588148596424,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.14476678621656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.69026702171788,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.50366896204873,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.16160151302503,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.30190786026534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,12.781437420116,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,12.781437420116,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,12.584105,Mm²,,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.030347197535253,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.030347197535253,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.012138879014101,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.018208318521152,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.025309562744401,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.005037634790852,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,5.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.65,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,95.0308649004199,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,114.641385417075,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.04825559540552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,215.720063323953,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,59.613520416879,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.14476678621656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.25359214083741,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.44265923143394,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.87409575403815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.750182800345649,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.93274997542031,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.93274997542031,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,5.028605,Mm²,,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009337599241616,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.009337599241616,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.003735039696647,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.00560255954497,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.007787557767508,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001550041474108,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,6.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.225,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,83.6591618846751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,118.785049950222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.04825559540552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,189.906297478212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,61.7682259741156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.14476678621656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.340998593963546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.597323096104938,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.78281806809332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.310608009974568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,12.1816930488644,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,12.1816930488644,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,12.07201,Mm²,,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.028923213650907,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.028923213650907,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.011569285460363,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.017353928190544,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.024121960184856,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.00480125346605,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,60.9157558531856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,127.072379016517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.04825559540552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.278765786731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,66.0776370885888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.14476678621656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.779189953640786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.53401903021118,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.79586822198292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.797689895709815,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,13.0960574181496,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,13.0960574181496,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,12.852745,Mm²,,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.031094205474582,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.031094205474582,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.012437682189833,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.018656523284749,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.025932567365802,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.005161638108781,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.05,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.73,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,63.5443907211466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,132.155274177178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.04825559540552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.245766937003,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,68.7207425721323,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.14476678621656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.872101119788098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.69855803940435,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.0088112370399,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.883250180490261,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,13.4696686658146,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,13.4696686658146,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,13.171755,Mm²,,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.031981277402536,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.031981277402536,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.012792510961014,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.019188766441522,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.026672385353715,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.005308892048821,1e6 dimensionless,Own calculations,,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.695,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,66.1730255891078,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,121.326497530553,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.04825559540552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,150.212768087275,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,63.0897787158874,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.14476678621656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.932387722178578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.59808290048054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.14649319414692,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Spain,es,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.831003108249883,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,402.906309674947,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.06,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,2.98,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.50658,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.53824,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.01518,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,3.71177304964539,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,1.34822695035461,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,73.8509270380901,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,66.8321846183982,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.230432,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.927475400209578,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.546347037983387,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.642740452345238,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.281952521663712,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002782426200629,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.14283185216483,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.154117175589919,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.00912873148185,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.593241259062786,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.50954207492626,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.340528148234258,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.298403400956975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,216.408035351329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.4538519557566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.5367030356009,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,273.128581416912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.26997648534034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.3209823423158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,22.1543224965371,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.818354089159,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,64.1659945423017,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,58.0605412569627,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.863208,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.805844745012777,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.474639650350758,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.558450408293855,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.244976802483884,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002417534235038,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.794609532304482,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.10703433090085,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005426737649332,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.48819441182844,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.19944437105769,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.27611740824894,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.295554133541507,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.309361295446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.0798239006119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8025980865443,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.588544890982,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.79402724316722,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7109706135346,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.40506172464892,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.060355920430823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,13.213567131984,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019452713154854,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,63.6717976444002,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,57.6129471265333,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.841156,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.799638249251023,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.470980608995531,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.554149306730959,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.243090027772311,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002398914747753,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.792312699523849,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.1067259157478,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005418297845301,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.377531385112257,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.15833767015895,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.203246861488774,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.279481168932646,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,111.05350922281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,21.4757829921829,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.818335107052,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.160633990109,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.92164485838056,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.7340521015131,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.98193594836866,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061016049702939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.4589133626939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019665472819257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,58.8890330351787,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,53.2811972199613,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.62774,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.739572699664109,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.435568947020787,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.512523880867228,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.224830100697889,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.002218718098992,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.743346651270899,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.100122988279027,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.005030261119791,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.297619262179668,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.03190481554492,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.164603210363278,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.3778124048697,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.3667480612365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.9842831020339,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.803737036186,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.78720290013651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,21.9774480257532,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.59917444181269,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.079795918550434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.30454882299119,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035718224548805,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,50.4114003436599,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,45.6030052912528,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.249452,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.633104222032937,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.372800425517705,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.438741225868825,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.192463683498013,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001899312666099,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.620938771409478,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.083600702754137,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003941057651101,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.212647542601487,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.82058688071584,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.145588525560892,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,90.5058768372588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.7709654546647,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.3558063104149,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.227467156304,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.5620821660384,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.5223611154856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.99368343503056,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073716713783926,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.34449955201257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02375889685256,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,48.6236679411839,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,43.9838560543303,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,2.16968,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.610652536022295,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.359564027595107,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.42318220746345,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.185638370950778,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001831957608067,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.561109282257245,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.075515610025162,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003337904540996,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.95843110504775,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.138264665757162,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.206529331514325,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.8695762451138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,30.0574804110434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.4506919677461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.2791921789581,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.68752593647929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.6615299090932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.40281393976858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.065215114098233,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.42458454727411,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02101883127386,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,43.2934891301326,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,39.1563131051611,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.142004,Mm²,,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.543712147807281,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.320099302536724,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.376792518430446,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.165288492933413,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001631136443422,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.498520619198519,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.067091513885576,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002960018488579,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,68.0169445833126,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,26.5034572322031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.4509429268083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.8441857585988,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.54206426593905,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,22.6618979907497,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.7150802641674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056770511405208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.342454450152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018297135825899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.24,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.55232,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.68096,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00672,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.96,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.28,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,30.8524801629531,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,27.9248912835866,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.31176,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.512725340983903,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.355318661301844,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.155868503659106,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001538176022952,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.448634673360915,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.060501590236101,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003589077386887,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.34,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,263.475465993713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.7035847215269,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,332.532385630665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.92886535574812,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.3160318948576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.064044039015837,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.85401908290962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.020641393774804,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,21.1675476671648,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,19.1532479221511,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.944536,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.287446878007381,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.199200686459115,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.087383850914244,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000862340634022,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.251516018256458,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.033918731604871,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002012128146052,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.455,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,216.627082508933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.1260613221673,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,273.405040834525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9657295641345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.601017560103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.035066901456995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.63321460672446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011302062339589,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,20.6733507692632,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,18.7056537917217,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.922484,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.281732761099411,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.16,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.195240803441892,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.085646759374221,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000845198283298,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.246516165961985,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.033244465809731,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001972129327696,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.31,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,160.8926439108,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.3983473383177,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.062605879821,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.0865873471398,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.66740433026054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.031731925046041,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.18577902559199,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.010227199442339,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,15.8905861600417,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,14.3739038851498,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.709068,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.218856736807367,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.151667718607505,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.06653244798944,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000656570210422,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.191499644706446,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.025825094943269,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001531997157652,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.01,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,140.250259244825,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.9803056131067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,177.009852192894,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.9187524991043,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.80799062526851,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.026221551340474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.84206731952155,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018451205997035,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,7.41295346852292,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,6.69571195644121,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.33078,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.100239680618986,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.06,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.069466098668957,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030472862908172,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000300719041857,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.087709720541613,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.01182828231304,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000701677764333,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.12,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,166.416939235695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,49.0572072209906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,210.03481900937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,15.8111378873253,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.985073571941864,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016227143004559,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.54523046634605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005230008190369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,5.62522106604692,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,5.0765627195187,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.251008,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.072735069316659,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.050405403036444,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022111461072264,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00021820520795,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.063643185652076,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.008582738179366,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000509145485217,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.87,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,156.302170749367,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.351912323473,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,197.268969702776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.9723213418554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.705076423240217,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01088167680849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.10684905720875,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003507164435376,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.00498737539198,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,4.51481706589252,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.223332,Mm²,,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.064624731983814,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044784939264783,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01964591852308,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000193874195951,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.056546640485837,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00762571837409,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000452373123887,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,146.187402263039,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.8767266730759,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.7750572631516,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,184.503120396182,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.5630690067324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,18.7371764878645,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.589870756031653,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.008012421121351,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.926777168447357,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002582403327412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.99687934591128,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,2.10630097537241,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.38383738671651,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.607051321157028,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.005990638037734,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,1.75177304964539,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.245106296265885,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,24.956964191176,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,22.5853224679481,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.1136269302392,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.414750059225676,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.12,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.287421791043393,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.126084018004605,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001244250177677,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.363841700089701,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.04894050698863,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001967852147345,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,2.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.635955758961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.5344586984906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,230.504839763385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.36215603852353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.68225387103634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015072337692849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.78440200502125,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004857814438405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,38.1747460138062,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,34.5566674647042,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.7034293470296,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.518397867005397,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.35924972183474,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.157592951569641,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001555193601016,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.454767291911315,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.061170948306637,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002459626787445,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.495,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.29,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,134.077203259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,13.1804805479147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.218838233184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.24806888059291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.26664233141535,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.022452017373271,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,6.73233614294784,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007236285199405,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,38.0035384600046,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,34.4016047832262,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.69578974226384,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.517905488151611,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.358908503289067,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.15744326839809,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001553716464455,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.454335349937433,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.06111284760189,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002457290612288,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.085,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.0912038764475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.2627049630671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.917808412464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.91916980959653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.93046588239849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.025882338515569,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.66207830213232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008341877703568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,37.807754942299,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,34.2242836512402,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.68705351152104,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.520715962856742,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.360856162259722,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.15829765270845,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00156214788857,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.456800853852449,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.061444483617096,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002470625387197,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,70.5772961436674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.9226294071937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.0756054629226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.99946345793853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.45485821064291,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.047106969992307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.9247408171716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015182576428521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,39.4065506407774,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,35.672312915352,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.75839479855168,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.532864541413951,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.369275127199868,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.161990820589841,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001598593624242,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.467458259144158,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.062878015886846,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002528266382947,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.4187722043906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.9632093340431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.7102323991613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.65714236836208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.75756447818111,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052687151440897,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.3987939910775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016981068909401,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,41.6017293162064,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,37.6604862416882,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.85634782164048,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.537917466705636,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.372776804427006,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.163526909878513,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001613752400117,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.471890964788577,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.063474261071265,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002552240845794,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.6087246345605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.3182520460727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.3289713612788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.12697263444922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.61021354447575,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052568525498393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.17764766740863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016942835768132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,37.1038516416004,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,33.5867584317975,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.86581067204368,Mm²,,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.479087415823467,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.332007579165663,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.145642574410334,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.00143726224747,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.420281989085731,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.056532315067169,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.002273111670567,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.7986770647304,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.2782043999502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.9477103233962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.14716527810394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.05942972257359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.047164343539529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.30995624530164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01520106792279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-323.9997853574,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.823120654088724,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,0.71822695035461,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.104893703734114,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,18.0414826839609,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.3219708668634,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.8050450697608,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.378602359027024,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.262371434805728,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.115095117144215,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.001135807077081,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.330355478714218,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.044675078365189,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.003571801947617,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,182.635955758961,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.5344586984906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,230.504839763385,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.36215603852353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.6611646074629,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.010895849247101,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.18040335618767,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003511732212341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,1,4.8237008613308,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,4.3506258701073,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.2152426529704,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.101225855841887,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.070149518098428,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.030772660175934,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000303677567526,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.088326222136709,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.011944650989343,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000954982715835,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.58,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,2.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.36,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.32,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,134.077203259,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,13.1804805479147,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,169.218838233184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.24806888059291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.537389177729644,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002837001600558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.847996779407866,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00091436561586,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,1,4.99490841513237,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.50568855158539,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.22288225773616,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.104818663865927,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.072639334059088,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.031864873815242,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000314455991598,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.09146118362443,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.01236860233618,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000988877905318,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.41,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,2.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.26,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,87.0912038764475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.2627049630671,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,109.917808412464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.91916980959653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.384037344658778,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003401786141329,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.611012057932228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00109639567335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,1,5.19069193283797,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.68300968357135,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.23161848847896,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.108927201005607,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.075486550296886,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.033113869105705,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000326781603017,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.095046152712003,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.012853409718662,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001027638574942,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.33,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.04,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.17,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.27,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,70.5772961436674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,27.9226294071937,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.0756054629226,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.99946345793853,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.336128800115744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006467397217652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.537435838991448,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002084442123249,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,1,3.5918962343596,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.23498041945949,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.16027720144832,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.075376309781779,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.018,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.052235782678773,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.022914398173661,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.000226128929345,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.065770791723707,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.00889440455425,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000711113503821,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.22,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,77.4187722043906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,29.9632093340431,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.7102323991613,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.65714236836208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.250307822186973,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004802419338471,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.399332628130458,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001547819752789,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,1,1.39671755893054,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.24680709312339,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.06232417835952,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.029310260801108,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.020312010735168,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008910319283537,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,8.79307824033242E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.025575131816592,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.003458610774531,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000276518209986,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.97,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.14,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,67.6087246345605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,28.3182520460727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,85.3289713612788,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.12697263444922,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.086665194067316,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001764911791349,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.138757596743557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000568831070352,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.18465011314024,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.05473760747112,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.05286132795632,Mm²,,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.024860003765392,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.003,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017227982609417,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007557441144679,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,7.45800112961767E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.021691989626951,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002933480444316,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.000234533694125,1e6 dimensionless,Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,wood,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,other,,0,0.3333,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.7986770647304,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.2782043999502,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,15.8007287202139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,72.9477103233962,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.14716527810394,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.1749288139377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.064923631897946,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.001336239452933,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.104394875498444,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00043066997568,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,0.361,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,28.29814735028,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,28.29814735028,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,6.648122,Mm²,,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.02901168326545,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.06716758715937,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.155116548018059,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011154549473332,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.025222628701454,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.003789054563996,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,199.412367234369,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.11485119777885,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,201.406490906713,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.34455359333656,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.702846922285,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.368035056161509,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.87896966943699,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.154574723587834,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,49.9905213270142,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,49.9905213270142,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,10.466934,Mm²,,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.158214587069712,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.118655919654801,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.322597094996019,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.077261843538128,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.141824816859706,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.016389770210006,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,169.372828415775,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.7012365251837,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.26812588926097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,171.066556699933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.2345193405772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.80437766778291,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.58042078677497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.603955034427487,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.35186073796524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.243661114459545,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,16.6135286514433,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,16.6135286514433,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,4.596494,Mm²,,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.04882485398042,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.039433345932785,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.110668602033098,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023562109687908,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.043558227578402,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.005266626402019,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-8.67361737988404E-18,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,152.839135724218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.8668300847475,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.33788306752487,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.36752708146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.304068635594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.0136492025746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.57803784774218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.265984537283562,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.68111079599844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.111713505659096,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,19.6984058595433,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,19.6984058595433,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,5.138148,Mm²,,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.068056092844272,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.046755512864287,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.185442184718052,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.034107631975593,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.060990555643307,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.007065537200965,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-7.80625564189563E-18,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.693216255822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.6895902632822,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.85969181640217,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.21014841838,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5496279105785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.57907544920651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.04444590997935,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.275865060832103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.18698979544422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.115863325549483,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,16.8892718655752,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,16.8892718655752,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,4.64491,Mm²,,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.057917778815293,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.040087841300964,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.175028111954686,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029299708701612,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.051985560243072,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.005932218572221,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,145.040879159333,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.7160312243389,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.03757847871966,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.491287950926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.3007331142223,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.11273543615899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.50093732848413,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.235571400594244,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.62803865436181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.098939988249583,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,14.5109866436881,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,14.5109866436881,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,4.227322,Mm²,,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.058330812179081,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.03444281875042,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.132071460360284,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.029627552655617,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.052459242896011,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005871569283069,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.888992698978,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.3591705123059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.83281469439912,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.177882625968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.4108516151685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.49844408319737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.91141338776775,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.225566395408422,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.01233032467242,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.094737886071537,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,6.09081861266695,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,6.09081861266695,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.40709,Mm²,,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.038835898852269,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.014456974337374,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.044022643016698,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.020231665877412,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.035132906804909,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00370299204736,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.33680868994202E-18,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,124.458254561158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.1028774582195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.68823665557324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,125.70283710677,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.0432085324522,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.06470996671973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.774426215238161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.070499257842686,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.814753865486011,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.029609688293928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1.25807841447652,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1.25807841447652,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.556784,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015799893484882,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.011392520063711,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007716667978017,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008083225506866,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.014164604509197,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.001635288975685,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,225.690430034687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.947334335034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.286885626856136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030823145349894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.295623726391089,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012945721046956,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.750541,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.100470007612087,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.072443942651704,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.049069551717744,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.051400455894344,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.090071361824237,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.010398645787851,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,206.933725376399,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.4841036656973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,209.003062630163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6233235395929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.67422455433121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.090125034315054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.18828875500136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037852514412323,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.8005170185265,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.8005170185265,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.827611,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.035170995771142,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.025360061785657,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017177514334626,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.017993481436516,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.031530797708829,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.003640198062313,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.46944695195361E-18,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,194.536001077872,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.9989447023543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,196.48136108865,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.8395567749888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.551366756765911,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.04303489862406,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.569945520645744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018074657422105,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.58466178371392,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.58466178371392,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.965294,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.045018874587062,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.032460879085641,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021987218348321,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.023031656238741,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.040359421067301,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.004659453519761,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,176.679008269046,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.839029126166,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,178.445798351736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.0923922329897,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.641738168966515,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046178727781313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.664878873935762,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019395065668152,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2.80913399396812,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.80913399396812,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.829124,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.035279214219669,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.025438092744997,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017230368224886,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018048845994783,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.031627815547933,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.003651398671736,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,170.792757864087,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.6791135499776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,172.500685442728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.3452276909906,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.486365318224758,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036215401343012,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.504334268015524,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015210468564065,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.86083584661784,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.86083584661784,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.838202,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.035928524910828,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.02590627850104,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017547491566449,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.01838103334438,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.032209922582558,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.003718602328271,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,144.563870049245,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.7479933304796,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.009508749738,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6941571988014,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.420280284671523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.033316847505595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.437829585904827,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01399307595235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.87711762171478,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.87711762171478,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.331347,Mm²,,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.023574252717809,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.016998225167251,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.011513665027378,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012060587690431,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.021134317561515,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.002439935156293,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,139.3790898998,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.3151337083507,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.772880798798,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.5123561575073,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.266031555023693,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.013026951608861,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.277449083029609,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005471319675722,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.093,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,0.03446790176648,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,0.03446790176648,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.341938,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000432873794106,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000138226270832,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000192628838377,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000240244955729,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.000400408259548,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,3.24655345579771E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,306.664496486321,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,309.731141451184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.010665358824423,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.018929431655098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.010961613810354,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.007950361295141,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3.1451960361913,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3.1451960361913,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.888131,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.039499733712206,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.012613147213394,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.017577381501932,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.021922352210274,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.036537253683791,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002962480028415,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,254.664201458059,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.1990640667975,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,257.210843472639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.0636069080549,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.809662870924899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061457833968709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.835060627173139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025812290266858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,0.560103403705299,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,0.560103403705299,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.434231,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007034199154228,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.002246176901015,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003130218623632,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.003903980530597,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.006506634217661,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000527564936567,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,238.957367475915,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.8910547074655,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,241.346941150674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.3542429771355,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.135389087483026,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030348862576678,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.139824001070279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012746522282205,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.24084446359328,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.24084446359328,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.553758,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015583456587829,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.004976145749942,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006934638181584,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008648818406245,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.014414697343742,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001168759244087,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,236.974951536421,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,75.4823390840627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,239.344701051785,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.7025824153063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.297479031657798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.041798949126512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.307279472291128,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017555558633135,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.292546316243,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.292546316243,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.562836,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.016232767278989,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.005183485156189,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.00722358143915,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009009185839839,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.015015309733065,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001217457545924,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,217.654020803046,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.0736234606599,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,219.830561011077,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.0509218534772,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.284900793464396,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.045631153934104,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.294859853812324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019165084652324,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.37009909521758,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.37009909521758,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.576453,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017206733315728,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005494494265561,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007656996325499,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009549736990229,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.015916228317049,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00129050499868,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,187.795786883592,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,81.8843596952665,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,189.673744752428,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.391431072012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.261086101794421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.047202484799416,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.271233618370446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019825043615755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,1.11158983196898,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1.11158983196898,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.195177,Mm²,,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.01396017985993,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004457797234323,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006212280037669,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007747899822261,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.012913166370436,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001047013489495,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,186.392846372566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,56.3657830944096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.76422640724148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,188.256774836292,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.673628899652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.29267922172445,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.21026507874705,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011001304447018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.218482374609945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004620547867747,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.027,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,16.8117190866006,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,16.8117190866006,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,3.287749,Mm²,,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007258784621745,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.007258784621745,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007041021083092,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000217763538652,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.006053826374535,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.00120495824721,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,180.857331095364,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.665904406318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.05758176585743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.18200732294924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.12210523376843,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.076443075638681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,24.0413614821198,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,24.0413614821198,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,4.557156,Mm²,,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010380322447292,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.010380322447292,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010068912773874,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000311409673419,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.008657188921042,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.001723133526251,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,136.176725689848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.3415838662474,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.538492946747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.3434652238239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.29826904246962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.274986010965573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.37979809076425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.105494124605541,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,7.63464024127531,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,7.63464024127531,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.676404,Mm²,,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003296403472509,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.003296403472509,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.003197511368334,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.88921041752792E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.002749200496073,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000547202976437,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.959658924764,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,60.9449997049099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.219255514012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.5968998760622,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.969403672586305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.10216844128531,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.994514222958322,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.04291074533983,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,5.48039638087031,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,5.48039638087031,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.298154,Mm²,,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002366267052501,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002366267052501,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.002295279040926,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.0988011575031E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001973466721786,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000392800330715,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.299814113391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,52.7174247447471,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.522812254525,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.1413183927938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.675812504667716,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.068435335802092,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.693637111293347,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.028742841036879,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.82593709607928,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.82593709607928,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.007658,Mm²,,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001651922281935,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.001651922281935,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001602364613477,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.95576684580406E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001377703183134,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000274219098801,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,116.962540430138,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.4898497845842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.13216583444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.6857369095254,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.451373561957381,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.044830553054235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.463612954528301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.018828832282779,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,3.81732012063766,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,3.81732012063766,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.006145,Mm²,,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001648201736255,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001648201736255,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001598755684167,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.94460520876396E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001374600248036,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000273601488218,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,106.486234657582,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.718428754426,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.551097004158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.3017400768589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.410365542020325,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.051030093499122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.422177454263605,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.021432639269631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.922016372253339,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.922016372253339,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.497777,Mm²,,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000398098387764,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000398098387764,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000398098387764,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000332014055395,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,6.60843323687474E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,103.90909393624,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,45.9884398139924,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.01471602291143,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,104.948184875603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3151447218768,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.04414806873429,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.096741470621536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.02289198760529,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.099570699052512,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009614634794222,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,3.4898750538561,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,3.4898750538561,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.948651,Mm²,,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002310764549258,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.002310764549258,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.138645872955496,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000924305819703,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.001927177634081,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000383586915177,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,277.385737995335,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,280.159595375288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.990265851759499,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.052516609060825,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.04439483630099,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.022056975805547,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.14390348987505,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.14390348987505,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.414655,Mm²,,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00406808672499,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.00406808672499,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.244085203499429,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001627234689996,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.003392784328642,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000675302396348,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,249.326927774806,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.4841036656973,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,251.820197052554,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6233235395929,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.57096629723478,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.072832244671197,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.66453613417018,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.030589542761903,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.17147781128824,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.17147781128824,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.717162,Mm²,,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001437809052872,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001437809052872,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.086268543172309,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000575123621149,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001199132750095,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000238676302777,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,230.875210184132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.9989447023543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,233.183962285974,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.8395567749888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.515168839739247,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.03729166718063,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.547839130995951,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015662500215865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.85178802240414,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.85178802240414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.012197,Mm²,,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002550399391404,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002550399391404,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.153023963484214,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001020159756561,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002127033092431,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000423366298973,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,225.080455899458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,46.0190660615836,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,227.331260458452,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3280077458651,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.891491229152894,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.046580360610337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.949218901278203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.019563751456342,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.72253339077984,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.72253339077984,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.989502,Mm²,,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002464815519209,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002464815519209,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.147888931152529,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000985926207684,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00205565614302,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000409159376189,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,217.455779209097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.0391874208128,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,219.630337001188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.8164587167414,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.833192302520303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.039618856031269,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.888698973304327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016639919533133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.6281775096941,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.6281775096941,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.797351,Mm²,,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001740205401293,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001740205401293,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.104412324077596,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000696082160517,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001451331304679,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000288874096615,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,201.90143876076,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.2442817855185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.920453148368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0025983499178,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.547369627321974,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036075573325965,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.586149569119361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015151740796905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.646273158121499,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.646273158121499,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.113475,Mm²,,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000427919360974,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000427919360974,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.025675161658425,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00017116774439,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000356884747052,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.10346139216432E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,196.228679303132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,41.7408754450923,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,6.36821779896139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,198.190966096163,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.5311676869387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,19.1046533968842,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.130932936515786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.004736545841132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.140432326255739,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001989349253275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.015,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,2.14562688496338,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2.14562688496338,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.376737,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003021844660194,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.003021844660194,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001445348300971,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001576496359223,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.002520218446602,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000501626213592,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,197.174139212737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.145880604864,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.429894043773736,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020855878239467,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.447788484433634,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.008759468860576,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.51615682895304,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.51615682895304,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.441796,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003543689320388,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.003543689320388,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001694946601942,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001848742718447,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.002955436893204,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000588252427184,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,163.473068241341,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.6984737158349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,165.107798923754,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.5533589606506,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.419335594356914,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023723770893761,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.439472267830084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00996398377538,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.27531236535976,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.27531236535976,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.223924,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001796116504854,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001796116504854,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000859082524272,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000937033980583,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001497961165049,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000298155339806,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,153.865975611486,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.2354584529932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.404635367601,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.7788925502571,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.200287914757631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.012144620798628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.210371653475005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005100740735424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1.68892718655752,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1.68892718655752,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.296548,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002378640776699,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.002378640776699,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001137703883495,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001240936893204,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.001983786407767,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000394854368932,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,151.731066138185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,47.998380730899,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,153.248376799567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.1593199069776,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.26164045073143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.014233823808987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.274958534128476,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005978205999774,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,1.51658767772512,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1.51658767772512,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.266288,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.002135922330097,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.002135922330097,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.001021611650485,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.001114310679612,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.001781359223301,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000354563106796,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,142.505207342848,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.7613030088048,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.930259416276,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.539747263698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.220950621789313,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.011120533855609,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.232769798846966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004670624219356,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1.2063765618268,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1.2063765618268,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.21182,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001699029126214,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.001699029126214,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000812645631068,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000886383495146,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.001416990291262,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.000282038834951,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.637087796644,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.1902723999494,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,128.91345867461,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.8199144079787,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.157819625484338,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.009995843499757,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.16704187808899,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.004198254269898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,0.3015941404567,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,0.3015941404567,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.052955,Mm²,,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000424757281553,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000424757281553,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000203161407767,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000221595873786,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.000354247572816,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,7.05097087378641E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.18,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.13,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,126.08165375181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,43.5123714852023,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,3.18410889948069,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.342470289328,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2751960237849,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.55232669844208,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.038985796577296,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002304197631999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.041286668630521,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00096776300544,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.001,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,4.55838000861698,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,4.55838000861698,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.136263,Mm²,,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000187522155264,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.000187522155264,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.50088621056363E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000112513293158,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.00015639347749,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,3.11286777738391E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,0.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,3.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,201.138971091724,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.359251253438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.150360802641,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.250885526444,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.927554275213772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.062902668906985,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.958095774732494,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.026419120940934,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,6.14390348987505,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,6.14390348987505,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.414655,Mm²,,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000252747252747,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.000252747252747,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000101098901099,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000151648351648,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.000210791208791,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,4.1956043956044E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.175,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,129.162023134716,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,57.4352231754419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.453643366063,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.1227937336856,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.807962427457554,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.081251025641255,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.844704863026221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.034125430769327,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2.17147781128824,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2.17147781128824,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.717162,Mm²,,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,8.93300248138958E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,8.93300248138958E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.57320099255583E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,5.35980148883375E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,7.45012406947891E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,1.48287841191067E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.1625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.7160685547903,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,59.5111950974458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,93.6432292403382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.9947019409273,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.206421576410062,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.042679167698475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.21861626685314,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.017925250433359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,3.85178802240414,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.85178802240414,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.012197,Mm²,,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000158454448777,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000158454448777,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.33817795108118E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.50726692662176E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.00013215101028,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,2.63034384969869E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,2.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.15,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.15625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,69.3845578822855,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,63.6631389414537,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.0784034611083,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,26.7385183554105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.276284524802995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.064439638247123,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.297016902517307,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027064648063792,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.72253339077984,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,3.72253339077984,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.989502,Mm²,,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000153137185395,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.000153137185395,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.12548741581E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,9.188231123715E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.00012771641262,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,2.54207727756115E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.153125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.8712960798403,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,66.2096644991119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,58.4500090406387,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.808059089627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.224154730527979,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.0655145954412,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.243762805854363,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.027516130085304,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2.6281775096941,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,2.6281775096941,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.797351,Mm²,,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000108117688763,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.000108117688763,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.324707550514E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.487061325771E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,9.01701524282169E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,1.79475363346331E-05,1e6 dimensionless,Own calculations,,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.19,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.115,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.1515625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,41.2190021880918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,68.0868463825239,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.34434391500227,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,41.6311922099727,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.59647548066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,7.03303174500681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.114492206475172,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.054289115049952,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.127898218925194,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +Sweden,se,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.02280142832098,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,2215.01949513282,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,28.37,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,19.09,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,18.38376,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.85127,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,5.13497,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,25.3039848197343,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,3.06601518026565,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,680.604241874278,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,608.145456901666,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,13.883544,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,8.71718844208885,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,5.87885086002876,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.64873811047357,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.49063922359719,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.57781110801808,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,7.6,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,1.09903209747398,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.893453695879235,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.09216390670411,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.30261203109863,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.557083461915766,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,190.177720612172,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.6817546058258,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.9897849117464,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,241.982131706928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.5072678571228,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.9704402755258,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,124.532719506176,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.328786682067185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,173.333176766305,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.04869330761415,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,436.215146015509,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,389.112777198482,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,9.404884,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.58704955854934,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,3.76149481825588,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.62040811393997,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.955385474511938,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.01125597009743,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,4.99,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.706970055569588,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.7339635512002,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.91104429063126,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.457763720261735,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.972389273421839,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.027610726578161,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.972389273421839,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.027610726578161,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,177.270670076484,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.7856762861608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0216016218124,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,225.559200605318,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.37455865798042,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0634437007197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,74.6946026021112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.214296642332893,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,104.371817621968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.031737332729502,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,191.181323213991,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,170.053002408843,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,4.209578,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.44865300350583,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.64387685234875,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.58672714627178,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.418719663599496,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.443206193634554,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.41,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.310274567840043,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.909170922329817,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.97401380798274,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.400672276159655,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.971823085221144,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.028176914778857,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.971823085221144,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.028176914778857,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,109.062007418891,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.2452163960233,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.9754947304064,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.770498239797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.73881654825105,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.9286686464511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,21.0630940622332,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.106271707545939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,30.8495929310221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.015738839887554,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,135.291206071605,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,120.025758554694,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,3.186553,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.73281161844641,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.1602709942121,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.12286192875327,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.296310786754336,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.3136389029388,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.46,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.223420374019994,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.209972626149447,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.660643292682927,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.11485365853659,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.381986280487805,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.964634146341463,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.035365853658537,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.964634146341463,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.035365853658537,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.726646511859,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.5947139181458,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.9800063632736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,130.70938502169,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.12347713127739,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.9418566004851,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.1220243870702,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.110237889420009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,20.8216926275214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016326231423103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,132.123411978221,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,117.090266061706,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,3.128569,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.69223846835596,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.13189402884771,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.09657052749466,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.289372778088869,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.306295162772428,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,1.63,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.081327155831158,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.04,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.498626373626374,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.49060939060939,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.349375624375624,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.366426073926074,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.975024975024975,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.024975024975025,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.975024975024975,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.024975024975025,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,97.1810258875737,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.0474532983377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.987124366596,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.653137339349,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.19052783348381,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.9626632359967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.1309553604257,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109648375918127,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.4943353449491,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.016238924473475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,366.696914700544,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,327.157008348457,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,8.132407,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.69665910070496,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,3.162577699244,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.04343509725681,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.803128706220548,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.850095297227598,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,4.26,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.595435320505025,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.635167963263354,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.35035488515444,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.15605689410812,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.201419540617759,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.971609187644822,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.028390812355178,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.971609187644822,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.028390812355178,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.6359614774353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.9381006827181,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0012775122567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,108.963197383889,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.32243271111055,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0040342960777,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,32.8200333149116,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.292263261558841,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,49.5840357987408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.043284189036865,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,272.907251278667,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,243.205880619535,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,6.418406,Mm²,,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.49539980834865,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.35103474706281,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.26501907580993,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.59771336722762,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.632667365311107,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.3,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.437966472872166,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.454934557163334,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.976397396793531,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.023602603206468,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.976397396793531,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.023602603206468,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,42.095947528969,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.6497569517621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0158916955236,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,53.5628836358602,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.50252900455597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.0467530151851,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.8262132148628,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,-0.048206258082269,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,23.4100430686335,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,23.1,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,14.9688,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.9501,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.1811,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,22.35,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.75,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,541.155306055106,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,484.040314449925,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,10.620887,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,7.1170234294221,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,4.29,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.61183118226552,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.21701100643118,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.2881812407254,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,5.55,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.839808764671808,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.727214664750296,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.545,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,210.535384622331,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.69,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,267.885223393454,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.508489,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,108.991918020882,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.25160881303,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,150.67015415274,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.037263265209743,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,382.824616399934,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,342.038514139581,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,7.717459,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.0424485941507,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,3.12,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.26750668900966,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.86225870959977,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.912683195541277,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,3.96,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.595008934109783,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.487439660040919,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,189.567133548469,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.467269104174,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,241.205220727072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.32740255432817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,69.8543717106652,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.17339022815343,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,97.1259229737439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.025679092789523,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,144.926579772315,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,129.365981554199,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.362921,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.91004066981575,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.36,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.23770635404061,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.326616954538493,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.345717361236651,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.88,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.225384799038259,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.804655870777492,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.44,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.150613812477,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.1412871772992,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.058841014996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.42722463095801,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.4843974411228,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.07782232061557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,26.6306695688563,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011525485683166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,104.141230819997,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,92.8590157069791,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.616377,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.38274423965028,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.06,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.896018267293383,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.236449264980198,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.250276707376701,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,1.1,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.163163820278733,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.119580419371549,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.42,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,120.034363624943,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.9433436377218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,152.731724276377,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1751091927466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.5193245023218,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.091424960596832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.1608614923143,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013540036664391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,104.141230819997,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,92.7590157069791,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,2.616377,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.36800835198038,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.05,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.886469412083286,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.233929428188645,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.247609511708449,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,1.33,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.03,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008008351980379,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,112.41811343741,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.9433436377218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.040807537761,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.1751091927466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.8008451951857,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.091424960596832,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,17.2466684219142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.013540036664391,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,302.491338063026,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,270.402196700214,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,6.247021,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.98752219094328,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.52,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.58391437973125,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.681866294651301,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.721741516560734,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.11,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.470527618531307,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.406994572411976,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.165,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,97.0856130623434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.292777074099,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.531734060526,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.22686028467407,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,30.2174139527808,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.220474719530215,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,44.9588538401717,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.032652305962425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,235.464444811087,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,210.406424550404,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,5.020146,Mm²,,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.08873399367498,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,2.02,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.00149962790139,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.528173512918422,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.559060852855172,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.55,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.364470611253648,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.174263382421336,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,45.0271129596681,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.6497569517621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,13.0688069881605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.2924985298817,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.50252900455597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,38.201429707092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.5632832274814,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.118725232762361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,21.0497882062019,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.25143195215557,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,3.00965814575567,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.10692790499681,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.555994863818602,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.588509183340157,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,2.95398481973434,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,0.29744713242122,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,121.671341362811,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,108.550217653853,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,2.937252,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.60016501266674,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.7,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.03690692820805,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.273628217166013,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.28962986729268,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.55,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.188819471494676,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.14,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.176343991627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,23.6497569517621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.460780094946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.50252900455597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.6234393288235,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.069465295906077,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,19.8664474375337,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.01028781032369,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,41.3463124896882,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,36.6512843095199,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,1.466965,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.544600964398641,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.25,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.352901424930319,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.093126764912168,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.098572774556154,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.7,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.06426291379904,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.22,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,0.315,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.1016830738672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.0687423688678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.372981543189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.71268074482932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.80214162247534,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.036774967649146,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.68814049185939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.005446372708839,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,40.8678435901666,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,36.2230067975582,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.748054,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.538612333690075,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.349020792231168,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.092102709061003,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.097488832397904,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.38,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.063556255375429,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.095056078314646,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.975,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.2725,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.2530833734976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.8373028084621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.6696232844383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.71510454593324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.3144767960301,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.023816021715081,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.78521852429972,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003527152816004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,26.3652862563933,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,23.2417677280977,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.482596,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.350067378796127,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.22684366145989,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.059861521774138,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.063362195562099,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.22,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.041307950697943,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.088759428098184,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.6625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.25125,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,44.8631346380337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.4291679488852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.083852513434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.95085977322991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.38914281054895,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.01613278273546,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.30419749008821,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002389265123122,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,24.6823956442831,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,21.7354123411978,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.451792,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.324230116375578,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.07,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.210101115411374,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.055443349900224,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.05868565106398,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.21,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.038259153732318,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.07597096264326,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.475,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.24,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.4731859025698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.4349180258184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.4980817424298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.2479113596237,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.2048013258957,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016009212484721,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.03440832557207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.002370964368987,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,53.7947533410328,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,47.7938837155585,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.694824,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.709136909761676,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.459520717525566,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.121262411569247,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.128353780666863,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.85,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.083678155351878,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.22,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,2.165,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,31.6932884316419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.9784098284002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.3265402004212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.77270249558607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.20908099319959,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.066061544459009,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.92175116040425,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009783714734379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,31.0014849034813,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,27.3916291371061,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.277611,Mm²,,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.406665814673671,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.2,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.263519447908539,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.069539854309198,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073606512455935,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.6,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.047986566131493,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.24,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,23.6628944033543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.6497569517621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.108666838828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.50252900455597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.05341097657475,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.030215189628898,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.97407592908434,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.00447486958404,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,-256.12,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.01856804784443,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,1.83601518026566,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,0.182552867578779,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,17.7775944563603,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,15.5549247978881,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,0.325405,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.596642892436438,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.386624594298812,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.102025934606631,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.107992363530995,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.5,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.0704038613075,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026239031128939,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,1,2.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,111.176343991627,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.6497569517621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,141.460780094946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.50252900455597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.96686514603698,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007695749160888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.8594991599567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001139740450728,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,12.0442171258868,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,10.4229787493813,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.22046,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.404222098820046,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.1,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.26193592003539,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.069121978898228,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.073164199886428,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.33,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.047698207660766,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.026523891159281,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.375,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,2.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,89.1016830738672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,25.0687423688678,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,113.372981543189,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.71268074482932,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.09351327630207,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.005526654942641,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.62821204329265,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000818497597005,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,5.38689985150965,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,4.46401405708629,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.098603,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.180792486664035,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.04,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.117153531358294,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.03091551521955,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.03272344008619,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.021333513426356,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.009458973237678,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,0.94,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.95,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,0.315,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,49.2530833734976,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,31.8373028084621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.6696232844383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.71510454593324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.300239187759581,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.003139253568823,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.479472254939133,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000464923453543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.78468899521531,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,3.92497511961722,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,0.08758,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.160581381723032,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.03,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.104056735356525,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027459416274639,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.029065230091869,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.14,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.018948603043318,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.001632778679714,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.61,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,3.52,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,0.275,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,44.8631346380337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.4291679488852,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.083852513434,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,4.95085977322991,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.248821502113312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002927726528963,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.401440483196526,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000433596298939,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,3.29978551394159,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,2.59583801352912,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,0.0604,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.110745780498643,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.02,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.071763265763121,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.018937528465268,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.020044986270254,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.09,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.01306800209884,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.007677778399803,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.445,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,3.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.325,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.2525,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,40.4731859025698,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,35.4349180258184,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,51.4980817424298,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.2479113596237,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.158963430957275,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002140269048759,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.256017079831103,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000316973846121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,10.4108232964857,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,8.96092793268438,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,0.190562,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.349402937473218,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.08,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.226413103482645,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.05974790230792,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.063241931682653,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.3,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.04122954662184,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.008173390851378,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.3625,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.23,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,31.6932884316419,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,38.9784098284002,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,40.3265402004212,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,5.77270249558607,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.42809306042571,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.00742780373372,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.747334567622439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.001100057732964,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,6.44132156409833,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.40782693202442,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,0.120649,Mm²,,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.216180470229022,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.05,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.140084944708406,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036966860409163,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.039128665111453,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.15,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.025509295487025,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,1,0.040671174741998,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.28,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,1,1.85,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.16,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.21,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Source residential part: Own calculations,,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,23.6628944033543,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,23.6497569517621,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,12.6831263080374,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.108666838828,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,3.50252900455597,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,37.0740465110241,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.221710932632253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.002853319526473,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.401628314678209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.000422576621871,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.506,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,215.953714072415,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,215.953714072415,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,58.20996,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.24449710323083,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.430529175282336,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.800794999775066,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.44196974991585,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.94331577091163,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.301181332319194,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.9960036108132E-16,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,42.8814410768567,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.8944622820195,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.9866040092528,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.8950480798965,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.3198435007511,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.97320801850559,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.3372821217312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.97299529365786,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.5999853987195,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.20460731738498,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,76.4688316536021,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,76.4688316536021,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,23.22172,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.495986010515105,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.152449626384242,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.192315098391242,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.300404144465337,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.427544398725996,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.06844161178911,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,200.519961974368,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,41.6544704784101,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.56487466797736,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,312.811140680015,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.7430481726938,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1297493359547,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.7590666795636,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.967288450197905,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,25.0613813843492,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.551354416612806,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,39.0593505039194,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,39.0593505039194,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,14.6028,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.282446970247665,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.077869417674739,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.106081615641474,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.174462681099112,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.240488809557297,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.041958160690369,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,182.274131934416,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.9192090058679,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.83770626011517,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,284.347645817689,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.3139491333447,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.6754125202303,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.34752622197677,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.699754625270888,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.562468392863,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.398860136404406,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,94.8637551325121,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,94.8637551325121,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,35.86544,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.920568370925386,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.189122073851856,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.362182994281224,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.556599318610097,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.825121949050747,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.095446421874639,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,204.549676254072,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.3702590894688,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.65208271898027,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,319.097494956353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.5610476809972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.3041654379605,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,19.940528191643,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.9858787051578,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,31.3431422070216,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.13195086193994,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,113.594624860022,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,113.594624860022,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,40.18092,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.04422047520293,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.226464269751306,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.404608579042514,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.637069371965873,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.934698571839139,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.10952190336379,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.409891896498,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,53.7887077720237,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.84163703472329,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,175.359431358537,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.6595634300535,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.6832740694466,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.4327380680662,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.16127976389106,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,21.2470459558955,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.23192946541791,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,130.324748040314,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,130.324748040314,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,44.03544,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.25439300310483,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.259817741656713,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.488933338968882,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.763313018784012,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.15551665156307,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.098876351541761,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-2.35922392732846E-16,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.3086926299096,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.7708016016033,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.18803992014731,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.361560502659,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.4993569129139,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.3760798402946,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.3603916396144,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.58799810767931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,16.5170510449193,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.4751589213772,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,85.1455543113102,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,85.1455543113102,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,31.5448,Mm²,,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.86401448480468,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.169747695398809,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.339421347708872,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.523015759381874,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.8,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.032537453188866,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.031477031615813,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.4615730099926,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,61.5274340986025,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,6.50754878792947,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,114.600053895589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.0706374362034,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,13.0150975758589,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.80901520327276,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.9408706031536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.8658628105582,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.10629624379755,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,99.484882418813,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,99.484882418813,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,25.77248,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,1.27420373519218,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.18946413609589,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.395003157909575,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.879200577282602,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,1.14232364859979,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.13188008659239,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,19.4416966240668,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.0712332414319,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,30.3290467335442,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.8506029476162,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.07732043211022,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.852327697290139,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.30361270704673,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.565826787455379,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.8939902948862,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.8939902948862,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.66188,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.20357044516165,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.007635842207663,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.063106838000112,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.140463607161538,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.182500904087419,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.021069541074231,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,150.821558734411,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.5758041545038,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,235.281631625682,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.6782083680672,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.42002892659279,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.203511925717294,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.07530904124048,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.116001797658858,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,10.7726763717805,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,10.7726763717805,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.48196,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.137976586363673,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.018170095459493,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.042772741772739,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.095203844590935,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.123696009675033,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.01428057668864,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,153.047707202816,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,55.6161349267495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,238.754423236393,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.7011969082472,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.66423603500162,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.138037022242795,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.60302936558209,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.078681102678393,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,16.2896603210153,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,16.2896603210153,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.55492,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.208638192269948,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.015280881663174,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.064677839603684,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.143960352666264,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.187044139370009,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.02159405289994,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,155.27385567122,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.6564656989951,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,242.227214847104,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.7241854484272,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.55280029757441,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.364823680139657,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.99268291427667,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.207949497679604,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,24.1955953714072,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,24.1955953714072,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,8.3764,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.30989751656595,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.031067612045382,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.096068230135444,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.213829286430505,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.277823123601374,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.032074392964576,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,87.6731471806676,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,55.9791118769603,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,136.770109601841,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.9080937698674,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.15612310570192,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.46890343272617,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.37887245399048,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.267274956653917,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,25.337812616648,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,25.337812616648,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,8.63956,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.324527050671038,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.033875662516096,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.100603385708022,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.223923664963016,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.290938500926585,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.033588549744452,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.156361926288,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,58.2376351227167,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.1639246050092,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.1954520199485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.48468002841928,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.503147542900818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.33214449397002,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.286794099453466,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,14.4699290780142,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,14.4699290780142,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,6.16792,Mm²,,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.185331049611664,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.026605770012302,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.057452625379616,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.127878424232048,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.166149285976857,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.019181763634807,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,51.7950543648802,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,57.4955489133967,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,1.43906818766695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,80.8002848092132,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.7724628806361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.87813637533391,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.770293977865674,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.354627946053918,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.2108208199006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.202137929250733,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.46,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,65.2183650615901,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,65.2183650615901,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,17.8278,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.835317712039536,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.084602515044049,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.34248026193621,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.492837450103326,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.688422425208585,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.146895286830951,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,21.9832161254954,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.9109259109097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,34.2938171557728,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6092277692185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.79661028889262,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.675868404954517,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.96238843540508,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.385244990824074,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,13.0645763344532,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,13.0645763344532,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,5.81188,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.167331272443817,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.002468889458481,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.068605821701965,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.098725450741852,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.140723194351938,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.026608078091879,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,223.356896329928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.2241437858155,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,348.436758274687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.5977619579148,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.99075971119014,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.413946176785906,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.69757160473158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.235949320767966,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,8.26427771556551,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,8.26427771556551,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,4.70592,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.10584898205446,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.009433967427598,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.043398082642329,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.062450899412132,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.084582550756434,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.021266431298026,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,223.356896329928,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,71.7081130527633,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,348.436758274687,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,40.8736244400751,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.89186914302142,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.33745264337726,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.97154958082164,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.192348006725038,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,49.6080627099664,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,49.6080627099664,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,14.23128,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.635380745936666,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.062839422393663,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.260506105834033,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.374874640102633,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.574235582793283,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.061145163143383,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,228.551242756205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,72.1920823197111,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,356.53993869968,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.1494869222353,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,11.6140233380283,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.02738573727486,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.2393335474968,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.585609870246669,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,49.712579320642,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,49.712579320642,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,14.25536,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.636719396116217,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.062290203264755,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.261054952407649,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.375664443708568,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.575474077095449,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.061245319020768,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.018555100887,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.1600208536067,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,229.348945957383,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.7012118865558,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.58529210891088,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.04292243487567,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.9547687217158,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.594465787879132,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,64.9048152295633,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,64.9048152295633,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,17.75556,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.831301761500884,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.085752016909526,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.340833722215363,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.490468039285522,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.782375615398439,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.048926146102445,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,96.0954088861316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.6284672667324,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,149.908837862365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.6782263420375,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.59821091681367,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.3605813482625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.4521177400353,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.775531368509627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,50.287420679358,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,50.287420679358,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,14.3878,Mm²,,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.644081972103745,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.074012985501928,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.264073608562535,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.380008363541209,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.636470125422505,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.00761184668124,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-1.04083408558608E-17,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,92.7005324718146,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,75.7411902773282,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,5.56439699231222,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.612830656031,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,43.1724784580771,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1287939846244,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,4.94148984598999,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.08974909747214,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.8318445955913,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.621156985559121,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.062,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,8.42851810377006,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,8.42851810377006,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.94188,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007182228606608,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.007182228606608,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005449875066694,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.005989978657911,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.001192249948697,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,33.763251770803,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.9109259109097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,52.6706727624527,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6092277692185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.301555075973595,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073618468807877,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.477897513278551,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.04196252722049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,15.8939902948862,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,15.8939902948862,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,3.66188,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013543812846296,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.013543812846296,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.010277045187769,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.011295539913811,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.002248272932485,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,169.001771226382,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.4745409638884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,263.642763113156,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.0804883494164,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.71813406182253,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.122579752064844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,4.25437861850115,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.069870458676961,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,9.25718551698395,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,9.25718551698395,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,2.1328,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007888364457213,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.007888364457213,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005985690950133,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.006578895957316,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.001309468499897,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,172.062725370438,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,33.5552025083797,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,268.417851577884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1264654297764,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.61146697897076,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.071566535909872,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.52209466744424,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.040792925468627,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,8.68980963045913,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,8.68980963045913,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,4.80396,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.007404884054997,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.007404884054997,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.005618826020932,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.006175673301867,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.001229210753129,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,175.123679514495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.635864052871,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,273.192940042612,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,19.1724425101365,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.539298756801,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.16158534547543,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.40900928142474,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.092103646920995,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,12.3702874206794,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,12.3702874206794,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,5.65192,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.010541145085163,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.010541145085163,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.007998620890622,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.008791315001026,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.001749830084137,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.156363030188,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.1353561736408,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,154.683926327093,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.7471530189752,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.25151507221181,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.175974542264924,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.96332935190364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.100305489091006,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,10.4441955953714,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,10.4441955953714,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,5.20816,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.008899856351324,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.008899856351324,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.006753210999384,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.007422480197004,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00147737615432,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.2394009291451,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,32.829248607958,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,97.0934654494664,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.7126717065361,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.671082350520631,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.170979979430023,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.05614689114246,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.097458588275113,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,7.67450541246734,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,7.67450541246734,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,2.45616,Mm²,,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.006539708598399,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.006539708598399,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.004962330884465,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.005454116971065,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001085591627334,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,57.4717329593119,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,32.0145670085959,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,2.01469546273373,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.6559034165266,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.2483031948997,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02939092546747,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.456528916893341,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.078632898903833,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.71898829849623,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.044820752375185,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.025,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,6.4501679731243,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,6.4501679731243,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,1.48608,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004779818543926,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.004779818543926,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002505580880726,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.0022742376632,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.003986368665634,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.000793449878292,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,21.6863963297081,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.9109259109097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.8307782743446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6092277692185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.331713684119813,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.056338668777685,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.601879772653945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.03211304120328,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2.40388204553938,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,2.40388204553938,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,0.55384,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001781367559195,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.001781367559195,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00093379287453,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000847574684665,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.001485660544368,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.000295707014826,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,89.787988225652,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,12.6638624851337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.069261632017,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.21840161652619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.287332969825962,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.007013753598766,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.479696457219596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003997839551297,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1.73198954833893,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1.73198954833893,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,0.39904,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.001283469794202,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.001283469794202,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.000672794866121,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.000610674928081,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.001070413808365,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.000213055985838,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,91.2720872045884,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,15.9609031162155,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,142.384456039158,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.09771477624281,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.209592956341408,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.006369038779495,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.349629700201709,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.003630352104312,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,4.82269503546099,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,4.82269503546099,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,1.11112,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.003573799513167,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.003573799513167,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.001873385704802,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001700413808365,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.002980548793981,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000593250719186,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.7561861835248,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,19.2579437472972,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,144.699650446299,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.9770279359594,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.59076533003884,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.021397886456497,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.984703348686824,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.012196795280203,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.6140350877193,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.6140350877193,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,1.29344,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.00416021243638,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.00416021243638,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.00218078335915,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001979429077229,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.003469617171941,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.000690595264439,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,50.8303900285716,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,12.3412163071685,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,79.2954084445717,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.03449329508604,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.452329165325971,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.015962622820344,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.779098349669084,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009098695007596,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,7.16685330347145,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,7.16685330347145,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,1.6512,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.005310909493251,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.005310909493251,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002783978756362,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.002526930736889,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.004429298517371,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00088161097588,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,31.2588347438478,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,12.6638624851337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,48.7637822004026,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.21840161652619,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.43717502200378,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.020910569735453,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.775777951467049,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.011919024749208,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,5.54684583799925,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,5.54684583799925,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,1.27796,Mm²,,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.004110422659881,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.004110422659881,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,1,0.002154683558309,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,1,0.001955739101571,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.00342809249834,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.00068233016154,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,28.3277392604485,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,12.809053265218,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,44.1912732462996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,7.30116036117427,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,59.481485090234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.322096916622136,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.016369457710818,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.575056808092904,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.009330590895166,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.126,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,18.7831280328481,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,18.7831280328481,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,4.32752,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.047779351921628,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.047779351921628,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.021500708364733,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.026278643556895,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.039847979502638,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.00793137241899,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,18.3842761015746,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,37.9109259109097,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,28.6794707184564,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.6092277692185,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.624626299315557,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.16406029009798,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.09731434543599,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.093514365355849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,8.76446435237029,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,8.76446435237029,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,2.01928,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.022294498869631,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.022294498869631,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.010032524491334,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.012261974378297,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.018593612057272,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.003700886812359,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,166.961135130345,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.3328037625695,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,260.459370803337,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.6896981446646,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.59365575600603,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.101636023981681,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.54344854849635,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.057932533669558,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,5.30048525569242,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,5.30048525569242,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,1.2212,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.013483044461191,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.013483044461191,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006067370007536,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007415674453655,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.011244859080633,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.002238185380558,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,169.280039784933,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,50.3731345348152,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,264.076862064495,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.7126866848446,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.976086538639931,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.061515671893916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.55737588109611,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.035063932979532,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,0.30608435983576,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,0.30608435983576,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,2.8724,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.000778598342125,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.000778598342125,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.000350369253956,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.000428229088169,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.000649351017332,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.000129247324793,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,171.598944439521,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,50.4134653070608,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,267.694353325653,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.7356752250247,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.057075341128744,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.144807637748001,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.091040230912292,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.082540353516361,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,5.72601717058604,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,5.72601717058604,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,4.12112,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.014565486058779,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.014565486058779,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.006554468726451,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008011017332329,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.012147615373022,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.002417870685757,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.495585732795,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,51.8653731079042,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.89311374316,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.5632626715054,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.672039485054916,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.213743426422446,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.08584671723112,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.121833753060794,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,6.78611422172452,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,6.78611422172452,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,4.36536,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.017262094951017,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.017262094951017,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007767942727958,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.00949415222306,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.014396587189149,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.002865507761869,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,63.0371041303234,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.6885271650996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.3378824433045,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.1724604841068,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.528689026810151,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.238735108945439,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.869156178532849,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.1360790120989,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,1,3.86711459499813,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,3.86711459499813,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,3.69284,Mm²,,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.009836925395629,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.009836925395629,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.004426616428033,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.005410308967596,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.008203995779955,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.001632929615674,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,1,0.35,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,1,2.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,1,0.2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,59.5494715298229,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,54.1400286625588,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,1,14.8703712725585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,92.8971755865237,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.8598163376585,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.740742545117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.287790060258556,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.199930463446243,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,0.474254883107054,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.113960364164359,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.393,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,1,17.5886524822695,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,17.5886524822695,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,6.8542,Mm²,,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.075234256926952,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.075234256926952,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.033855415617129,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.041378841309824,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,1,0.062745370277078,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,1,0.012488886649874,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,1,4.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,1,1.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,1,2,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,291.254424616268,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.9709858092769,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70095607971205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,454.356902401378,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.10346191128781,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.40191215942409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.20545634131936,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.109468330933945,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.15689262489921,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.062396948632349,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,20.447928331467,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,20.447928331467,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,7.51296,Mm²,,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.087464613634517,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.087464613634517,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.039359076135533,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048105537498984,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,1,0.072945487771187,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,1,0.01451912586333,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,1,4.75,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,1,1.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,276.459812919996,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,17.9875244215593,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70095607971205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,431.277308155193,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.2528889202888,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.40191215942409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,5.74915525412616,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.135139551478198,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.01097711416004,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.077029544342573,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,3.73273609555804,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,3.73273609555804,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,3.66188,Mm²,,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.015966523116925,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.015966523116925,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.007184935402616,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008781587714309,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,1,0.013316080279516,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,1,0.00265044283741,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,1,1.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,1,4.67,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,1,0.9,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,1,1.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,1,261.665201223723,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,20.0040630338417,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70095607971205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,408.197713909008,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,11.4023159292898,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.40191215942409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.994274570001625,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.073252478342364,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.55878919771718,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.041753912655148,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,15.1474430757745,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,15.1474430757745,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,6.29176,Mm²,,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.064792150808483,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.064792150808483,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.029156467863817,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.035635682944666,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,1,0.054036653774275,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,1,0.010755497034208,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,1,0.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,1,4.6,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,1,1.1,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,232.075977831179,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,24.0371402584066,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70095607971205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,362.038525416639,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.7011699472918,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.40191215942409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.58656512807165,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.151235917592232,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.62637288422421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.086204473027572,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,15.9761104889884,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,15.9761104889884,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,6.48268,Mm²,,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.06833671894044,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.06833671894044,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.030751523523198,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.037585195417242,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,1,0.056992823596327,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,1,0.011343895344113,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,1,2.7,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,1,0.5,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.6369278356102,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,22.9885401800197,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70095607971205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.113607423552,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.1034679026112,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.40191215942409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,1.31543913086069,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.14902734965421,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.08513036138536,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.0849455893029,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,15.6849570735349,Mm²,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,15.6849570735349,Mm²,S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,6.4156,Mm²,,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,1,0.06709133013732,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.06709133013732,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.030191098561794,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.036900231575526,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,1,0.055954169334525,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,1,0.011137160802795,1e6 dimensionless,Own calculations,,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,1,0.4,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,1,1.8,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,1,0.25,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,1,0.3,dimensionless,Source residential part: IEE TABULA Project, TABULA Web Tool, 2017 http://webtool.building-typology.eu/#bm; Source service part: S. Birchall et al., D2.1a Survey on the energy needs and architectural features of the EU building stock,2014 +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,36.1378101371012,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,1,25.8439588550117,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.70095607971205,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,56.374983813878,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.7310565473566,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.40191215942409,kWh/m²/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,0.640554295046844,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.165804502430213,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.03170778977161,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +United Kingdom,uk,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.094508566385221,TWh/year,Vienna University of Technology, e-think. Invert/EE-Lab. 2017 http://www.invert.at/ and S. Pezzutto. Analysis of the space heating and cooling market in Europe. PhD-Thesis. 2014,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Area,Constructed area [Mm²],,0,18751.9414331734,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Area,Number of dwellings/units [Mil.],,0,301.378258851999,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,19.09,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,195.293111736095,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,51.5356822636918,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,54.5494648522118,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Occupancy,Occupied [Mil.],,0,25.3039848197343,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,,BUILDING,Occupancy,Vacant [Mil.],,0,276.074274032264,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,3626.82464633201,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,2903.5726979833,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,211.42876203,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,55.5058968015512,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,23.4241451732822,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,38.3378676458546,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,10.7778862401125,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,6.39014291558406,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,45.3302534260683,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,6.43238781733787,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.09760723144708,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.17801728424889,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.33898282388511,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.98089739953695,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.62585549680781,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction material,brick,,0,0.7303169154605,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction material,concrete,,0,0.00805295074002,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction material,wood,,0,0.122786690975955,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction material,other,,0,0.138833099381097,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,solid wall,,0,0.827866488424327,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,,insulation,0,0.000583230297028,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,cavity wall,,0,0.061528841321916,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,,insulation,0,0.005002097992748,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.028011062487525,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WALLS,construction methodology,other,,0,0.082585203607071,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,wood,,0,0.861304364449328,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.035354852772487,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WINDOWS,construction material,aluminium,,0,0.10333460862251,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.756807643835861,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.243192356164139,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ROOF,construction material,wood,,0,0.867484807861906,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete,,0,0.122002676414854,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ROOF,construction material,concrete + bricks,,0,0.010503087608199,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ROOF,construction material,tilted roof,,0,0.867935304139849,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ROOF,construction material,,insulation,0,0.083725177983089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ROOF,construction material,flat roof,,0,0.132054224331003,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction material,wood,,0,0.154606745216431,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete,,0,0.584409176054189,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.133665767414909,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction material,other,,0,0.12596914087042,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.712296798034422,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,,insulation,0,0.007325743812367,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.146891920903398,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,,insulation,0,0.000583230297028,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,FLOOR,construction methodology,other,,0,0.139905299393293,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,individual,,,0,0.180779007646196,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,central,,,0,0.752099033121574,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING, district heating,,,0,0.06712195923223,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,boiler,non-condensing,,0,0.698038414579579,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,boiler,condensing,,0,0.001966302079699,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,combined,,,0,0.166611362772619,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,stove,,,0,0.098843212141175,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,heat pump,,,0,0.034566025851119,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,fossil fuels,liquid,,0,0.348619404818188,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,fossil fuels,gas,,0,0.621386159617172,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,electricity,,,0,0.02557609177323,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE HEATING,biomass,,,0,0.004418343791409,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,individual,,,0,0.309493658533708,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,central,,,0,0.654500528010267,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW, district heating,,,0,0.036005813456025,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,boiler,non-condensing,,0,0.65013835803715,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,boiler,condensing,,0,0.002103768652757,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,Combined,,,0,0.313217164883165,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,heat pump,,,0,0.034566025851119,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,fossil fuels,liquid,,0,0.512648357597945,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,fossil fuels,gas,,0,0.408640368964436,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,DHW,electricity,,,0,0.078746901484182,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,184.352474434558,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,31.9407837224343,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.8080566724364,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,223.56619140801,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.6655351265657,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.2703882184841,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,633.200158206335,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.60389521978092,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,762.200635826167,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.19661732464727,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,3729.09390395152,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,3045.2855305555,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,221.1393125,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,60.9880692480483,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,24.3271872766519,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,41.9437064311869,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,12.5953275205449,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,6.44903529631645,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,49.861729250457,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,6.78359614230101,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.7824058046907,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.85838972794535,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.69988457391471,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.5782177892606,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.45856332444856,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,brick,,0,0.795188584191867,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,concrete,,0,0.168262061483984,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction material,wood,,0,0.036549235023884,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.608295530596453,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,,insulation,0,0.014763655972238,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.227535778992572,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,,insulation,0,0.010987031826713,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.163770943328526,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WALLS,construction methodology,other,,0,0.000397627782184,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,wood,,0,0.748680052561635,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.152530921937141,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction material,aluminium,,0,0.098789025501224,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.634648230701998,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.365351769298002,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,wood,,0,0.613269860015588,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete,,0,0.287348655347872,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.099381365336275,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,tilted roof,,0,0.704300799769734,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.171828056872097,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,flat roof,,0,0.295699080930002,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ROOF,construction material,,insulation,0,0.005085109855125,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,wood,,0,0.057468645998646,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete,,0,0.679450917741324,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,0.224801809582244,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction material,other,,0,0.038277152637855,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.904252727323568,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.009615217676868,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.057468645998646,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.00677369833713,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,FLOOR,construction methodology,other,,0,0.038277152637855,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,individual,,,0,0.157736145507258,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,central,,,0,0.773720586004481,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING, district heating,,,0,0.068543268488261,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,boiler,non-condensing,,0,0.775710578018809,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,boiler,condensing,,0,0.003062083966089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,combined,,,0,0.169304077822895,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,stove,,,0,0.020486081132278,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,heat pump,,,0,0.03145878856096,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,fossil fuels,liquid,,0,0.261573870321596,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,fossil fuels,gas,,0,0.702594961362891,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,electricity,,,0,0.025955567698019,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE HEATING,biomass,,,0,0.009875600617494,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,individual,,,0,0.263174684518113,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,central,,,0,0.697740647264205,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW, district heating,,,0,0.039084668217681,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,boiler,non-condensing,,0,0.581517897076507,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,boiler,condensing,,0,0.001906629380522,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,Combined,,,0,0.385138294483042,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,heat pump,,,0,0.03145878856096,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,fossil fuels,liquid,,0,0.427390004879295,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,fossil fuels,gas,,0,0.406994047614543,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,DHW,electricity,,,0,0.165644420842914,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.453020896199,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,45.1948688568979,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.9575879419793,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,193.91937701803,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.0962234014196,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.8488898209771,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,598.784027204794,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,11.4014609932443,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,713.707940320834,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.385930800943,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,2671.36465930948,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,2112.33745520639,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,182.9539225,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,45.2614720056074,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,16.9680061398249,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,31.5496413441321,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,8.86079284647397,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.85103781500127,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,35.8531266689592,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,5.2355237205458,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.17282161610238,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.32386565121596,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,4.26284558400341,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.19138314671457,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.23242594268264,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,brick,,0,0.650802442120882,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,concrete,,0,0.307800389267642,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction material,wood,,0,0.041397168611476,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.572302890544862,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.110688853420472,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.140246621063964,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.008335493036586,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.241757509489828,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,,insulation,0,0.007801957245584,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WALLS,construction methodology,other,,0,0.045692978901345,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,wood,,0,0.623172514923927,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.236365595194601,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction material,aluminium,,0,0.140461889881472,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.387147079519117,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.612852920480883,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,wood,,0,0.377072697423231,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete,,0,0.46847743333229,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.154449869244479,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,tilted roof,,0,0.503982141857372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.207720538952842,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,flat roof,,0,0.496017858142628,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ROOF,construction material,,insulation,0,0.33188759438579,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,wood,,0,0.042382304268847,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete,,0,0.747195864444695,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,0.188954880158524,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction material,other,,0,0.021466951127933,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.93615074460322,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.366494284995986,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.042382304268847,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.021077808077746,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,FLOOR,construction methodology,other,,0,0.021466951127933,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,individual,,,0,0.149928361555569,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,central,,,0,0.696238733830845,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING, district heating,,,0,0.153832904613586,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,boiler,non-condensing,,0,0.755400194494406,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,boiler,condensing,,0,0.002597217639074,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,combined,,,0,0.177313499972567,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,stove,,,0,0.024981525387973,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,heat pump,,,0,0.039729223684211,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,fossil fuels,liquid,,0,0.303385865611236,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,fossil fuels,gas,,0,0.658185549645437,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,electricity,,,0,0.030626627497744,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE HEATING,biomass,,,0,0.007801957245584,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,individual,,,0,0.248090365282529,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,central,,,0,0.630799362247226,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW, district heating,,,0,0.121110272470245,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,boiler,non-condensing,,0,0.579479903202418,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,boiler,condensing,,0,0.001111791304736,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,Combined,,,0,0.377773540635521,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,Solar collectors,,,0,0.001927202351345,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,heat pump,,,0,0.039729223684211,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,fossil fuels,liquid,,0,0.340458797465956,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,fossil fuels,gas,,0,0.420546484448736,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,DHW,electricity,,,0,0.239018677959614,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,139.113999252714,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.3368834896937,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.3541264282295,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,168.607677724824,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6374383299715,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.5282458106712,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,351.424705906353,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.26394889540581,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,425.541334041337,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.27972265116899,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,2404.39675027676,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,1845.32364231787,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,185.3289665,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,39.6488851472456,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,14.8832068833193,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,28.2795989221047,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,7.09563068532093,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.27365553981998,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,31.4056625725069,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,4.78964790097873,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.45357467376005,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.853851582714404,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.70237192505947,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.789341852827646,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.989657959927654,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,brick,,0,0.494737119734704,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,concrete,,0,0.434047993485105,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,wood,,0,0.054427757326742,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction material,other,,0,0.016782094321639,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.379184168533979,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.198278808295104,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.131057161536079,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.018021692909085,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.381385429021775,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,,insulation,0,0.199635479655141,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WALLS,construction methodology,other,,0,0.108373240908167,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,wood,,0,0.422079937901746,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.171586531186134,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.406333530912119,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.276727621347774,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.723272378652226,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.034144826326502,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,wood,,0,0.39366968589813,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete,,0,0.359143562401296,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,concrete + bricks,,0,0.247186751700574,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,tilted roof,,0,0.50360319864252,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.420776486230355,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,flat roof,,0,0.49639680135748,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ROOF,construction material,,insulation,0,0.414013132234125,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete,,0,0.797367392865631,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,0.202632607134369,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,FLOOR,construction methodology,,insulation,0,0.574434076697735,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,individual,,,0,0.196018007591333,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,central,,,0,0.739540431212996,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING, district heating,,,0,0.064441561195672,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,boiler,non-condensing,,0,0.586100210949983,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,boiler,condensing,,0,0.110694672723395,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,combined,,,0,0.209136675756136,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,stove,,,0,0.055331723972039,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,heat pump,,,0,0.038765636872058,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,fossil fuels,solid,,0,0.02706077745709,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,fossil fuels,liquid,,0,0.179655192294648,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,fossil fuels,gas,,0,0.76161901487549,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,electricity,,,0,0.025080184665293,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE HEATING,biomass,,,0,0.006584830707479,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,individual,,,0,0.296632416173474,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,central,,,0,0.58025363508921,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW, district heating,,,0,0.123113948737316,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,boiler,non-condensing,,0,0.631584535421327,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,boiler,condensing,,0,0.029398997585594,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,Combined,,,0,0.297349180718947,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,Solar collectors,,,0,0.002930569675684,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,heat pump,,,0,0.038765636872058,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,fossil fuels,liquid,,0,0.276973059066834,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,fossil fuels,gas,,0,0.47996906179065,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,DHW,electricity,,,0,0.243090187283156,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.351470779706,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.2511632646633,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.6795197576396,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.776632008817,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7268085085963,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.6487716724125,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,263.105260189172,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.36558070040839,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,320.891018691627,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.30339705646673,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,2108.45525858968,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,1655.99199832977,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,162.7042995,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,33.7675931884334,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,13.1961086341288,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,23.960925374762,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.19646712228216,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.61020069138921,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,26.767690643935,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,4.03947059548952,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.96043194900883,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.625730378214976,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.20062244823403,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.605264750819134,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.740833586005086,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,brick,,0,0.640344687655364,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,concrete,,0,0.254297536825434,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,wood,,0,0.057075259579995,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction material,other,,0,0.04827802328382,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.464231698096197,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.263682396416909,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.238930685405709,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.152032586626914,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.208555926852529,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,,insulation,0,0.197459372904983,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WALLS,construction methodology,other,,0,0.088281689645564,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,wood,,0,0.368114935655682,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.284883695678496,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.347001368665822,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.263635555107574,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.736364444892425,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.357726050508613,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,wood,,0,0.398420110968101,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete,,0,0.302256468391077,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.299323420640821,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,tilted roof,,0,0.527052359672078,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.501774711440836,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,flat roof,,0,0.472947640327922,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ROOF,construction material,,insulation,0,0.438339970791982,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete,,0,0.765692984250127,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,0.234307015749873,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,FLOOR,construction methodology,,insulation,0,0.636500229986674,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,individual,,,0,0.102309007667819,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,central,,,0,0.7954384434847,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING, district heating,,,0,0.102252548847481,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,boiler,non-condensing,,0,0.37514158046805,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,boiler,condensing,,0,0.237045285242569,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,combined,,,0,0.236370789330361,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,stove,,,0,0.006040498978702,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,electric heating,,,0,0.107290396291472,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,heat pump,,,0,0.038135701968531,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,fossil fuels,solid,,0,0.005276906773726,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,fossil fuels,liquid,,0,0.17128991574595,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,fossil fuels,gas,,0,0.816849620942702,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE HEATING,biomass,,,0,0.006583556537623,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE COOLING,no space cooling,,,0,0.97517547496264,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,SPACE COOLING,space cooling,,,0,0.02482452503736,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,individual,,,0,0.324985466796873,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,central,,,0,0.641922083481829,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW, district heating,,,0,0.033092449721299,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,boiler,non-condensing,,0,0.589492201815527,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,boiler,condensing,,0,0.028440349830862,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,Combined,,,0,0.336023153850005,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,Solar collectors,,,0,0.002655938041034,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,heat pump,,,0,0.043412608742257,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,fossil fuels,liquid,,0,0.288851420372985,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,fossil fuels,gas,,0,0.515286346469481,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,DHW,electricity,,,0,0.195890638300832,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,88.8871727730027,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7309567164818,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.945877239013,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.829486627082,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.6391833785701,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.7475152532759,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,194.710864820951,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.97914125050073,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,239.974835267318,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.54655504079157,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,2486.1500763053,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,1905.86733196016,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,183.424035139654,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,39.8380648525525,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,15.512977719151,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,28.63309441814,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.46668765543846,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,4.73828277897404,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,32.0748081841479,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,4.79733462285122,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.41046329114365,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.480331871201026,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.7846517780226,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.416180088246815,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.526875893891633,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,brick,,0,0.689275560190759,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,concrete,,0,0.278276079643985,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,wood,,0,0.019357871188054,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction material,other,,0,0.013086489476509,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.48900175263159,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.290063133249397,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.283982295194168,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.283845572583366,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.220744570462697,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,,insulation,0,0.191330222410421,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WALLS,construction methodology,other,,0,0.006271381711545,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,wood,,0,0.517316370746666,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.198912922580264,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.28377070667307,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,0.159427837048543,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,0.801308768182455,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.456177518292572,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,0.039263394769002,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,wood,,0,0.420485922432958,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete,,0,0.297247301553055,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,concrete + bricks,,0,0.282266776013988,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,tilted roof,,0,0.546477860586116,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.404302631771812,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,flat roof,,0,0.453522139413884,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ROOF,construction material,,insulation,0,0.398490995005351,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,wood,,0,0.006271381711545,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete,,0,0.763508293948571,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,0.230220324339884,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,0.993728618288455,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.622258200490505,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.006271381711545,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.012542763423091,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,individual,,,0,0.094184903180574,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,central,,,0,0.777225712399643,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING, district heating,,,0,0.128589384419783,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,boiler,non-condensing,,0,0.510063432224141,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,boiler,condensing,,0,0.180930148280801,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,combined,,,0,0.22428257356943,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,stove,,,0,0.002168010713179,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,electric heating,,,0,0.049957179399945,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,heat pump,,,0,0.032621991821675,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,fossil fuels,liquid,,0,0.206941115530081,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE HEATING,fossil fuels,gas,,0,0.793058884469919,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE COOLING,no space cooling,,,0,0.922912892542834,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,SPACE COOLING,space cooling,,,0,0.077087107457166,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,individual,,,0,0.331156778858263,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,central,,,0,0.632322363701156,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW, district heating,,,0,0.036520857440581,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,boiler,non-condensing,,0,0.601442545770158,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,boiler,condensing,,0,0.040164254848749,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,Combined,,,0,0.268577757260499,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,Solar collectors,,,0,0.007259606908146,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,heat pump,,,0,0.08257917122162,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,fossil fuels,liquid,,0,0.300448175602672,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,fossil fuels,gas,,0,0.509819049883337,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,DHW,electricity,,,0,0.189761549631156,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.4945783618674,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.5896329589882,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.0888212015658,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,96.314680454988,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.4598148719735,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.5511456813128,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,199.041335494307,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,7.50478445271751,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,254.142209054649,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.27566029338134,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,1725.65613840866,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,1308.98229614172,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,103.196985108416,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,26.3682776085603,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,9.82796817364192,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,18.9318582995844,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.30885223143357,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.1275670775424,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,19.7008928476538,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,3.2216060391512,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.9348314951855,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.359176029639868,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.3945960478064,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.279918049366983,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.359953943918644,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction material,brick,,0,0.700688314603114,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction material,concrete,,0,0.271360580975121,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction material,wood,,0,0.013973455982862,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction material,other,,0,0.013973455982862,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,solid wall,,0,0.508930176012742,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.345474780366476,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,cavity wall,,0,0.263161169860341,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.26663234995118,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.227908654126918,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WALLS,construction methodology,,insulation,0,0.227294803686997,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,wood,,0,0.667861544596928,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.329923607840071,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction material,aluminium,,0,0.002214847563001,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,double glazing,,0,0.863971088363463,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,0.460480445875923,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,triple glazing,,0,0.136028911636537,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,WINDOWS,construction methodology,,low-e,0,0.09410435123191,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,wood,,0,0.384162285269053,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete,,0,0.325235937527282,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,concrete + bricks,,0,0.290601777203665,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,tilted roof,,0,0.552421438823087,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.361645645339923,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,flat roof,,0,0.447578561176912,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ROOF,construction material,,insulation,0,0.419089344684019,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete,,0,0.692990164706993,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,FLOOR,construction material,concrete + bricks,,0,0.307009835293006,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,FLOOR,construction methodology,,insulation,0,0.713158324108774,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,individual,,,0,0.088886539982294,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,central,,,0,0.858920266708151,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING, district heating,,,0,0.052193193309556,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,boiler,non-condensing,,0,0.422580262902611,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,boiler,condensing,,0,0.245392375629858,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,combined,,,0,0.249901952548709,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,heat pump,,,0,0.08215274621175,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,fossil fuels,liquid,,0,0.230714118652794,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,fossil fuels,gas,,0,0.727636688685939,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE HEATING,electricity,,,0,0.041649192661267,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE COOLING,no space cooling,,,0,0.84418089779534,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,SPACE COOLING,space cooling,,,0,0.15581910220466,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,individual,,,0,0.201122361901802,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,central,,,0,0.763807846775055,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW, district heating,,,0,0.035069791323143,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,boiler,non-condensing,,0,0.573239200878733,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,boiler,condensing,,0,0.062098814049427,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,Combined,,,0,0.153344236958002,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,Solar collectors,,,0,0.129192339195015,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,heat pump,,,0,0.08215274621175,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,fossil fuels,liquid,,0,0.290631098270445,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,fossil fuels,gas,,0,0.500366808931357,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,DHW,electricity,,,0,0.209036988327849,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,57.0865978480549,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,27.1739119066573,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.942145215796,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,70.3751908003787,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.7156450946869,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.7451224474081,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,109.574754329835,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.21915912294139,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,139.428812974382,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.8317498626249,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,160.425337964802,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,103.955619001191,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,27.4327327919811,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,29.0369861716291,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Occupied [Mil.],,0,22.35,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Occupancy,Vacant [Mil.],,0,138.075337964802,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,,BUILDING,Construction features (U-values),Walls,,0,2.4741552630358,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,2271.95520521972,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1846.48884479263,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,121.79673056,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,34.7647727556993,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,17.6697451732822,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,24.0806952378852,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.7546333804222,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.92944413739185,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,28.6256431737302,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,3.63955671099721,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.57527008544597,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.47283825172141,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,6.18933789740632,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.176211313845,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.88345524317853,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,brick,,0,0.733276150617698,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,concrete,,0,0.005317000519413,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,wood,,0,0.144257224571775,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction material,other,,0,0.117187203420323,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,solid wall,,0,0.770904040047483,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,cavity wall,,0,0.077172940806275,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,,insulation,0,0.00798507481212,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.044715323421122,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WALLS,construction methodology,other,,0,0.107194279786501,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,wood,,0,0.919640132412426,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.014252564154299,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction material,aluminium,,0,0.066107303433275,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.725689896087498,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.274310103912502,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,wood,,0,0.956849062352615,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,concrete,,0,0.043140917590674,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,tilted roof,,0,0.956849062352615,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,,insulation,0,0.050545849960335,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ROOF,construction material,flat roof,,0,0.043140917590674,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,wood,,0,0.19601551206558,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete,,0,0.611614900955643,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.049683793459524,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction material,other,,0,0.140541907923522,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.662006176661758,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,,insulation,0,0.005341731477932,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.188030437253461,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,FLOOR,construction methodology,other,,0,0.148526982735642,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,individual,,,0,0.24445120703716,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,central,,,0,0.704197369213189,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING, district heating,,,0,0.051351423749652,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,boiler,non-condensing,,0,0.678344629746011,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,boiler,condensing,,0,0.002441867488598,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,combined,,,0,0.148105628311842,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,stove,,,0,0.141057797785782,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,heat pump,,,0,0.030077771133049,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,fossil fuels,liquid,,0,0.448351722161123,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,fossil fuels,gas,,0,0.516843648778858,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,electricity,,,0,0.027751427429179,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE HEATING,biomass,,,0,0.00705320163084,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,individual,,,0,0.287817555974691,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,central,,,0,0.704197369213189,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW, district heating,,,0,0.00798507481212,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,boiler,non-condensing,,0,0.607455735447388,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,Combined,,,0,0.362494187884845,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,heat pump,,,0,0.030077771133049,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,fossil fuels,liquid,,0,0.629754225330317,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,fossil fuels,gas,,0,0.283143588325828,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,DHW,electricity,,,0,0.08714333365506,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,209.703384107837,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,29.4317100819388,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.6586050809672,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,255.753912408695,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.2720791614295,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.7873096878105,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,437.395129389635,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.65153342375225,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,535.378269159001,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.25110565791562,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,2049.43605364161,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1694.51964710778,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,116.535017,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,34.6024488943122,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,17.5798872766519,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,24.3095213207181,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.75853523572356,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,3.53439233787056,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,28.0314294184278,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,3.77066137518413,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.80035810070023,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,2.00398092233333,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,5.39849451745432,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.69527033071508,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.6898660797797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,brick,,0,0.922668882157208,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,concrete,,0,0.041955657234414,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction material,wood,,0,0.035375460608379,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.589617399340148,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.357216129201823,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,,insulation,0,0.009314735288661,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.053166471458029,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,wood,,0,0.857533034341355,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.059829385291351,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,0.082637580367293,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.593030651534427,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.406969348465573,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,wood,,0,0.874398834191578,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete,,0,0.080006038765847,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.045595127042575,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,tilted roof,,0,0.937963315288952,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,,insulation,0,0.19778135372644,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ROOF,construction material,flat roof,,0,0.062036684711048,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,wood,,0,0.089720465395337,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete,,0,0.722434562867517,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,0.118195586927926,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction material,other,,0,0.069647987459192,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.840630149795443,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.005655427291738,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.089720465395337,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.00698675014151,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,FLOOR,construction methodology,other,,0,0.069647987459192,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,individual,,,0,0.19360111048146,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,central,,,0,0.754557652682187,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING, district heating,,,0,0.051841236836353,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,boiler,non-condensing,,0,0.796726735752184,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,boiler,condensing,,0,0.003967289624241,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,combined,,,0,0.162344317423434,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,stove,,,0,0.006457874094916,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,heat pump,,,0,0.030522996425761,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,fossil fuels,liquid,,0,0.340836495101897,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,fossil fuels,gas,,0,0.613352345338511,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,electricity,,,0,0.027841805504793,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE HEATING,biomass,,,0,0.017969354054799,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,individual,,,0,0.237417506723947,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,central,,,0,0.755595743134544,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW, district heating,,,0,0.00698675014151,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,boiler,non-condensing,,0,0.499836810262384,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,Combined,,,0,0.469659406632391,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,heat pump,,,0,0.030522996425761,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,fossil fuels,liquid,,0,0.521331193486799,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,fossil fuels,gas,,0,0.315858737370439,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,DHW,electricity,,,0,0.162837602626112,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,189.769167452693,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.1875151712685,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.4448663712229,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,228.582027140571,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.2240890582356,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.97300942716,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,370.858787075644,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,5.61484456912091,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,444.665630014298,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.541069443211,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,1293.11450340529,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,1026.86967307919,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,86.860384,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,23.0617484866444,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,11.5492061398249,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,16.3065913470708,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.42350107128673,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.33165606828686,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,18.1698703702462,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,2.46016372906808,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.43171438733009,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.59761120809246,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.07938496561556,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.49568641746341,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.46788616813633,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,brick,,0,0.767197353799781,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,concrete,,0,0.195219737073485,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction material,wood,,0,0.037582909126734,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.510044261176173,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,,insulation,0,0.026323554479592,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.181108380791612,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.293723869626123,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,,insulation,0,0.016117577217184,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WALLS,construction methodology,other,,0,0.015123488406093,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,wood,,0,0.745438354281828,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.136716267628089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,0.117845378090084,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.360088144321296,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.639911855678704,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,wood,,0,0.538245984957469,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete,,0,0.383734990614632,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.078019024427899,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,tilted roof,,0,0.662614870516352,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,0.257845478570448,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,flat roof,,0,0.337385129483648,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ROOF,construction material,,insulation,0,0.322137908802047,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,wood,,0,0.072290338398649,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete,,0,0.805343400764558,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,0.078019024427899,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction material,other,,0,0.044347236408894,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.883362425192457,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.277851785591512,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.072290338398649,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.026323554479592,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,FLOOR,construction methodology,other,,0,0.044347236408894,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,individual,,,0,0.222386468097229,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,central,,,0,0.707916620297471,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING, district heating,,,0,0.0696969116053,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,boiler,non-condensing,,0,0.756566243289845,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,boiler,condensing,,0,0.003587923834813,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,combined,,,0,0.192324447196538,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,stove,,,0,0.004732548072026,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,heat pump,,,0,0.042808368546274,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,fossil fuels,liquid,,0,0.337241650708224,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,fossil fuels,gas,,0,0.605229126115181,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,electricity,,,0,0.041411645959411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE HEATING,biomass,,,0,0.016117577217184,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,individual,,,0,0.27834557978799,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,central,,,0,0.708492642972214,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW, district heating,,,0,0.013161777239796,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,boiler,non-condensing,,0,0.513056729599103,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,Combined,,,0,0.444154432794119,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,heat pump,,,0,0.042808368546274,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,fossil fuels,liquid,,0,0.392484962461585,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,fossil fuels,gas,,0,0.355392822756576,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,DHW,electricity,,,0,0.252143946659457,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,166.4985210693,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.875834047252,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2008812644597,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,203.606218773939,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.1810305840778,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.1852376941068,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,199.361273727795,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.69050530936977,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,242.93756194665,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.14490937804874,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,1142.18833075989,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,888.546902057785,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,89.75604,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,20.0770299078072,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,9.70340688331934,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,14.5050194060665,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.54478681053947,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.02722369120122,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,16.1293628425541,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,2.1935543877586,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.75411267749452,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.00419349272345,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,4.49509965445414,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.926106064205765,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.17282366044849,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,brick,,0,0.436569880769175,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,concrete,,0,0.462186523166029,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,wood,,0,0.085784433524947,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction material,other,,0,0.01545452571845,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.25886127554618,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,0.064969229061095,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.152830975296605,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,0.022518877578908,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.443037133330129,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,,insulation,0,0.180167379583485,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WALLS,construction methodology,other,,0,0.145270615827085,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,wood,,0,0.448254514412788,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.151605251542564,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.400140234044648,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.345622714038201,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.654377285961799,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.046367661878891,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,wood,,0,0.651003845156386,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete,,0,0.136977364888763,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,concrete + bricks,,0,0.212018789954851,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,tilted roof,,0,0.702084850776215,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,0.599704656027929,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,flat roof,,0,0.297915149223785,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ROOF,construction material,,insulation,0,0.278556343320656,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete,,0,0.933762772958878,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,0.066237227041122,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,0.469849504710748,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,individual,,,0,0.191323452854705,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,central,,,0,0.759053795224388,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING, district heating,,,0,0.049622751920906,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,boiler,non-condensing,,0,0.64978073862096,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,boiler,condensing,,0,0.005816414399114,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,combined,,,0,0.197056283737833,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,stove,,,0,0.116477654098489,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,heat pump,,,0,0.030894919537396,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,fossil fuels,solid,,0,0.056965076271181,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,fossil fuels,liquid,,0,0.216097680289256,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,fossil fuels,gas,,0,0.679648592260425,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,electricity,,,0,0.033427061870435,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE HEATING,biomass,,,0,0.013861589308702,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,individual,,,0,0.295764534145937,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,central,,,0,0.702491334933966,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW, district heating,,,0,0.001744130920097,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,boiler,non-condensing,,0,0.542632115242353,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,Combined,,,0,0.426498975614043,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,heat pump,,,0,0.030894919537396,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,fossil fuels,liquid,,0,0.359095511836313,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,fossil fuels,gas,,0,0.411743818751167,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,DHW,electricity,,,0,0.229188239867931,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.67506510972,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.2078946754847,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.2742907520387,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,165.945525745318,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.8461628472594,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.697297074986,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,143.568633600719,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.11358949780279,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,177.943723993232,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.24277674636513,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,931.043287555915,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,754.174566549758,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,73.70106,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,16.2623761231584,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,8.12000863412879,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,11.6937499370043,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.98491515979598,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.58371102635803,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,13.1561309842586,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,1.71458551820285,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.39165962069688,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.776562441105281,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,3.81929116702337,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.730632901245339,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.903985394805648,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,brick,,0,0.672108066626213,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,concrete,,0,0.151857954110064,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,wood,,0,0.088852995807297,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction material,other,,0,0.087177456097328,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.280052299874971,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,0.065764475917182,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.43857691560773,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,0.289764037976972,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.114583263168379,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,,insulation,0,0.114583263168379,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WALLS,construction methodology,other,,0,0.166787521348919,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,wood,,0,0.377918694404144,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.132387068962583,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.489694236633273,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.350919484826182,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.649080515173817,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.313080449628409,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,wood,,0,0.613863159936055,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete,,0,0.154355808909458,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.231781031154486,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,tilted roof,,0,0.646273578704402,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,0.562541631130765,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,flat roof,,0,0.353726421295598,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ROOF,construction material,,insulation,0,0.36416417548848,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete,,0,0.945503958927231,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,0.054496041072769,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,0.547208084999439,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,individual,,,0,0.128521206216953,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,central,,,0,0.849173938326502,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING, district heating,,,0,0.022304855456544,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,boiler,non-condensing,,0,0.435376969202508,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,boiler,condensing,,0,0.32032711885366,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,combined,,,0,0.207013117236611,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,stove,,,0,0.013679408902226,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,heat pump,,,0,0.023626820220351,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,fossil fuels,solid,,0,0.011950165996424,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,fossil fuels,liquid,,0,0.238853133097569,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,fossil fuels,gas,,0,0.734287475322724,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE HEATING,biomass,,,0,0.014909225583283,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE COOLING,no space cooling,,,0,0.996692176839505,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,SPACE COOLING,space cooling,,,0,0.003307823160494,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,individual,,,0,0.156395728978701,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,central,,,0,0.841544943748043,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW, district heating,,,0,0.002059327273256,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,boiler,non-condensing,,0,0.438533870175703,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,boiler,condensing,,0,0.003307823160494,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,Combined,,,0,0.522604754862383,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,heat pump,,,0,0.035576986216776,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,fossil fuels,liquid,,0,0.446004706607931,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,fossil fuels,gas,,0,0.464782406853647,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,DHW,electricity,,,0,0.089237995579089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,103.137547626968,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,34.9060611207191,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.5630419812127,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,129.732382284274,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0126988425152,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,27.3483191059015,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,99.1049389857605,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.08452328623443,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,123.303332106196,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.885348638154141,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,1185.72959668032,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,942.331277615548,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,73.66483,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,20.390623160218,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,10.370177719151,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,14.6851092266398,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.35092225266109,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,2.35459168091716,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,16.7796013613962,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,2.20153843838407,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.40948336043781,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.576591861750497,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,3.41001491791918,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.466975844562219,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.591353667872147,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,brick,,0,0.773979832823699,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,concrete,,0,0.204899262480456,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,wood,,0,0.011754364724048,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction material,other,,0,0.009363730571685,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.363480609204961,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,0.181045553398175,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.455357165572879,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,0.451346976392047,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.178771591069797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,,insulation,0,0.107625521817429,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WALLS,construction methodology,other,,0,0.002390634152363,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,wood,,0,0.577664905993743,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.101216600372649,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.321118493633608,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,0.140706616809685,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,0.831199382075148,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.392397996343377,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,0.028094001115167,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,wood,,0,0.731660404805727,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete,,0,0.094704082381316,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,concrete + bricks,,0,0.173635512812958,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,tilted roof,,0,0.777155403604877,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,0.537434982638522,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,flat roof,,0,0.222844596395122,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ROOF,construction material,,insulation,0,0.261782334590439,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,wood,,0,0.002390634152363,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete,,0,0.96013474541015,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,0.037474620437487,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,0.997609365847637,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.5560542383793,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.002390634152363,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.004781268304726,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,individual,,,0,0.091512649693275,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,central,,,0,0.830727993691175,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING, district heating,,,0,0.07775935661555,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,boiler,non-condensing,,0,0.49675443778447,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,boiler,condensing,,0,0.205664166080559,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,combined,,,0,0.168430002439087,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,stove,,,0,0.004545724434214,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,electric heating,,,0,0.10474651701779,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,heat pump,,,0,0.019878383340975,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,fossil fuels,liquid,,0,0.331881282925397,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE HEATING,fossil fuels,gas,,0,0.668118717074603,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE COOLING,no space cooling,,,0,0.885723716177337,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,SPACE COOLING,space cooling,,,0,0.114276283822663,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,individual,,,0,0.213038932966965,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,central,,,0,0.784570432880672,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW, district heating,,,0,0.002390634152363,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,boiler,non-condensing,,0,0.495918312881078,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,boiler,condensing,,0,0.009529766804873,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,Combined,,,0,0.369946251052379,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,heat pump,,,0,0.124624900358765,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,fossil fuels,liquid,,0,0.479276427056219,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,fossil fuels,gas,,0,0.383981714027959,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,DHW,electricity,,,0,0.136762133606306,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,92.4329609815217,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.4529363508062,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.3852447495545,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,118.02035800209,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.1744215249361,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.8967229093195,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,112.357854620195,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.01889895155633,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,145.477974341404,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.749497031982759,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,696.490692208908,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,563.306711338522,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,34.585014,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,11.2663386369621,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,5.58446817364192,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.11107306206135,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.81197157911231,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.34329399578843,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,7.94135390834221,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,1.19280340331971,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.13991334727255,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.439744131776113,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.12376578772646,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.322546799612633,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.433842257258236,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,brick,,0,0.80767163177195,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,concrete,,0,0.178919376868539,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,wood,,0,0.006703490055685,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction material,other,,0,0.006703490055685,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,solid wall,,0,0.457959811314126,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,0.310313102674315,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,cavity wall,,0,0.432810247067605,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,0.432810247067605,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.109229941618269,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WALLS,construction methodology,,insulation,0,0.109229941618269,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,wood,,0,0.643204376815393,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.352588818940451,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction material,aluminium,,0,0.004206804244157,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,0.83859097045754,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,0.248242283066328,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,0.16140902954246,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,WINDOWS,construction methodology,,low-e,0,0.141296548127264,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,wood,,0,0.725016678484625,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete,,0,0.102278016199439,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,concrete + bricks,,0,0.172705305315936,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,tilted roof,,0,0.779902749576844,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,0.438669620157349,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,flat roof,,0,0.220097250423156,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ROOF,construction material,,insulation,0,0.241256043447743,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete,,0,0.827294694684064,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction material,concrete + bricks,,0,0.172705305315936,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,FLOOR,construction methodology,,insulation,0,0.5197888433322,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,individual,,,0,0.092346939621713,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,central,,,0,0.885342074029422,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING, district heating,,,0,0.022310986348865,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,boiler,non-condensing,,0,0.552992675146322,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,boiler,condensing,,0,0.155097965550991,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,combined,,,0,0.171363166838604,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,heat pump,,,0,0.120568613576394,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,fossil fuels,liquid,,0,0.378513277018769,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,fossil fuels,gas,,0,0.521649578478372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE HEATING,electricity,,,0,0.099837144502859,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE COOLING,no space cooling,,,0,0.768078554322841,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,SPACE COOLING,space cooling,,,0,0.231921445677159,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,individual,,,0,0.10978258608597,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,central,,,0,0.886537548332689,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW, district heating,,,0,0.003679865581341,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,boiler,non-condensing,,0,0.476957817871876,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,boiler,condensing,,0,0.011299112304059,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,Combined,,,0,0.232257950726683,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,Solar collectors,,,0,0.158938926633299,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,heat pump,,,0,0.120568613576394,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,fossil fuels,liquid,,0,0.496090492547881,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,fossil fuels,gas,,0,0.376561153534626,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,DHW,electricity,,,0,0.127375500916434,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,62.7900115134269,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.2443090094783,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.2155889569421,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,78.7307085344236,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.80108130972439,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.7629797174636,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,47.7482115025073,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.27986379152671,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,65.0791748514938,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Single family- Terraced houses,Single family- Terraced houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.304385520311956,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of dwellings/units [Mil.],,0,91.9923118670431,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Area,Number of buildings [Mil.],,0,7.22082963249957,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,59.6110180898439,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,15.7306853292644,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,16.6506084479348,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Occupied [Mil.],,0,2.95398481973434,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,,BUILDING,Occupancy,Vacant [Mil.],,0,89.0383270473087,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,870.245907430241,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Heated area [Mm²],,0,700.474258293646,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,47.889403312174,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,13.2237810262132,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,4.3202,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.81253491806081,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.85764409558157,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.5536020125708,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,10.8989960771208,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,1.6199172126513,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.983522195269042,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.69469221672628,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Windows,,0,3.72726845569654,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.63210721289623,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.14749987538568,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,brick,,0,0.688623904109129,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,concrete,,0,0.00527326073087,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,wood,,0,0.104290814770799,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction material,other,,0,0.201672401327695,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,solid wall,,0,0.900503096236312,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,cavity wall,,0,0.035168592126972,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WALLS,construction methodology,other,,0,0.064328311636717,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,wood,,0,0.779325049429715,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.091139719079614,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction material,aluminium,,0,0.129509500166017,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.738940685850671,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.261059314149329,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,wood,,0,0.913360409611668,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,concrete,,0,0.086639590388332,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,tilted roof,,0,0.909861954022386,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,,insulation,0,0.196148870082235,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ROOF,construction material,flat roof,,0,0.090133697459606,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,wood,,0,0.116537904447583,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete,,0,0.518907173632548,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.236084350767531,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction material,other,,0,0.128444839827683,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.754526138701,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,,insulation,0,0.000623594929051,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.105232384257069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,FLOOR,construction methodology,other,,0,0.140215745717277,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,individual,,,0,0.050770499720355,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,central,,,0,0.921894028231968,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING, district heating,,,0,0.027335472047678,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,boiler,non-condensing,,0,0.683391435995411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,boiler,condensing,,0,0.000698910555906,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,combined,,,0,0.235588628815475,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,stove,,,0,0.039431383367638,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,heat pump,,,0,0.040911041114372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,fossil fuels,liquid,,0,0.19348621565069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,fossil fuels,gas,,0,0.805583012951152,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE HEATING,electricity,,,0,0.000930771398158,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,individual,,,0,0.32885530747867,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,central,,,0,0.645153668048769,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW, district heating,,,0,0.025991024472561,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,boiler,non-condensing,,0,0.68055024409875,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,Combined,,,0,0.27856011463568,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,heat pump,,,0,0.040911041114372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,fossil fuels,liquid,,0,0.426943143409145,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,fossil fuels,gas,,0,0.520023082052143,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,DHW,electricity,,,0,0.053058017629135,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,154.700553870176,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.5335114199978,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.3620007423743,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.283155671361,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.1128492172742,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.1155641462296,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,128.478245355014,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.07526313794795,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,152.15211290167,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.96319234792299,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,967.744902846909,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,796.390920208669,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,47.7617465771322,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,15.4740477839123,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,4.5273,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,10.1086624711373,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.67649582036295,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.68888949241201,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,13.0044019016621,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,1.72910759620068,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.18020023544995,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.72357505725689,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,4.02172380453209,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.47172088894119,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.20074067475137,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,brick,,0,0.617368860543081,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,concrete,,0,0.34307640727237,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction material,wood,,0,0.039554732184549,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.646356375669499,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,,insulation,0,0.003250951385975,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.07459997549461,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,,insulation,0,0.022611040381029,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.279043648835891,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,wood,,0,0.692916532139509,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.262378663087884,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction material,aluminium,,0,0.044704804772607,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.713078694083667,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.286921305916333,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,wood,,0,0.4360412678438,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete,,0,0.349616971429539,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.214341760726661,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,tilted roof,,0,0.659552218487783,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,,insulation,0,0.200846640807873,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ROOF,construction material,flat roof,,0,0.340447781512217,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,wood,,0,0.022564654722919,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete,,0,0.719606143364643,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,0.2578269408084,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.977433084173043,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.000623594929051,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.022564654722919,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.011305520190515,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,individual,,,0,0.050770499720355,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,central,,,0,0.921894028231968,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING, district heating,,,0,0.027335472047678,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,boiler,non-condensing,,0,0.683391435995411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,boiler,condensing,,0,0.000698910555906,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,combined,,,0,0.235588628815475,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,stove,,,0,0.039431383367638,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,heat pump,,,0,0.040911041114372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,fossil fuels,liquid,,0,0.19348621565069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,fossil fuels,gas,,0,0.805583012951152,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE HEATING,electricity,,,0,0.000930771398158,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,individual,,,0,0.236745429997335,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,central,,,0,0.737263545530104,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW, district heating,,,0,0.025991024472561,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,boiler,non-condensing,,0,0.662211864264106,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,Combined,,,0,0.296898494470323,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,heat pump,,,0,0.040911041114372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,fossil fuels,liquid,,0,0.426943143409145,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,fossil fuels,gas,,0,0.335803327089474,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,DHW,electricity,,,0,0.237277772591804,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,140.225413116359,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.4365061734173,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.3620007423743,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.9773281627,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.1009343396235,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.1155641462296,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,145.297403777339,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.75744017739796,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,157.79874916203,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.34214970450973,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,774.654227376196,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,610.742758058502,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,46.2125990997632,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,12.9040286942755,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,3.6931,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.82636384893999,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.61439082124197,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.46327402409351,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,10.2122351912819,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,1.64545117101602,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.04634233197761,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.974101131847496,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.40141520592159,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.706944208587263,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.930985312342692,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,brick,,0,0.691255631161603,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,concrete,,0,0.258895148766168,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction material,wood,,0,0.049849220072229,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.646998665205488,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,0,0.225481127179886,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.107110343036404,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,,insulation,0,0.02279835529082,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.237490017517806,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WALLS,construction methodology,other,,0,0.008400974240302,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,wood,,0,0.599868273263477,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.350468966790016,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction material,aluminium,,0,0.049662759946507,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.312372593231647,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.687627406768353,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,wood,,0,0.378473528307218,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete,,0,0.402364961556243,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.21916151013654,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,tilted roof,,0,0.597635038443758,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,0.285899916333719,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,flat roof,,0,0.402364961556243,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ROOF,construction material,,insulation,0,0.360295042690366,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,wood,,0,0.018673822006016,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete,,0,0.749069481344223,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,0.232256696649761,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.981326177993984,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.59631025036899,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.018673822006016,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.02279835529082,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,individual,,,0,0.056084485204784,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,central,,,0,0.711621476082679,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING, district heating,,,0,0.232294038712537,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,boiler,non-condensing,,0,0.685197080122931,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,boiler,condensing,,0,0.000678151720857,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,combined,,,0,0.230104476582394,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,stove,,,0,0.034993080201588,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,heat pump,,,0,0.049049207428267,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,fossil fuels,liquid,,0,0.336669584814404,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,fossil fuels,gas,,0,0.661387754475662,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE HEATING,electricity,,,0,0.001942660709934,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,individual,,,0,0.156808234317935,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,central,,,0,0.613687718414646,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW, district heating,,,0,0.229504047267419,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,boiler,non-condensing,,0,0.578200959939916,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,Combined,,,0,0.37043201160763,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,Solar collectors,,,0,0.002339817080223,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,heat pump,,,0,0.049049207428267,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,fossil fuels,liquid,,0,0.415122385118675,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,fossil fuels,gas,,0,0.307444081123409,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,DHW,electricity,,,0,0.277456602247707,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,127.101257613358,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.2174324505084,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.6760494575109,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,147.595278255347,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.4079565797486,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.7473728779045,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,90.2872638927058,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.10846264970081,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,110.862712789159,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.03552991406482,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,779.108882506238,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,592.260589386332,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,52.8298491803464,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,12.7856966341313,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,3.7491,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.88231927879215,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.44894485019566,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.45443250514352,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,9.99231879652158,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,1.70315290949848,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.09022492811127,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.636981964545063,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.85546733796491,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.613009811009642,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.750816561767763,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,brick,,0,0.622033858803986,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,concrete,,0,0.325677566848069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,wood,,0,0.030643049602663,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction material,other,,0,0.02163903238633,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.429582552732285,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,0.32083965246305,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.106486885494157,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,0.001864638463924,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.438235226620713,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,,insulation,0,0.27574279437578,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WALLS,construction methodology,other,,0,0.025695335152846,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,wood,,0,0.465783257658186,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.173477269013394,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.36073947332842,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.109621011869245,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.890378988130755,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,WINDOWS,construction methodology,,low-e,0,0.037397991204757,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,wood,,0,0.207570787995441,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete,,0,0.495770246997554,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,concrete + bricks,,0,0.296658965007005,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,tilted roof,,0,0.475826370922515,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,0.366217175217094,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,flat roof,,0,0.524173629077485,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ROOF,construction material,,insulation,0,0.516098043108477,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete,,0,0.703341034992995,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,0.296658965007005,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,FLOOR,construction methodology,,insulation,0,0.801575196253376,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,individual,,,0,0.188986424135276,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,central,,,0,0.778666555710475,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING, district heating,,,0,0.032347020154249,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,boiler,non-condensing,,0,0.367297525791308,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,boiler,condensing,,0,0.272043169304862,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,combined,,,0,0.299179057108757,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,heat pump,,,0,0.061510215405592,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,fossil fuels,liquid,,0,0.148554489865475,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,fossil fuels,gas,,0,0.846346460958251,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE HEATING,electricity,,,0,0.005099049176274,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,individual,,,0,0.203116202207191,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,central,,,0,0.497597833665678,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW, district heating,,,0,0.299285964127132,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,boiler,non-condensing,,0,0.697843032313492,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,boiler,condensing,,0,0.044190683778939,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,Combined,,,0,0.193415906426616,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,Solar collectors,,,0,0.00307012968588,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,heat pump,,,0,0.061510215405592,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,fossil fuels,liquid,,0,0.263317183246177,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,fossil fuels,gas,,0,0.382329410421049,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,DHW,electricity,,,0,0.354389010949781,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.584646728117,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.3204646261895,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.3365772891226,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,121.230248898393,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.2864977318004,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.6410969538432,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,75.7952702611112,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.21213299160131,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,92.5562139404629,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.1245624647488,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,808.796388703253,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,617.442263591093,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,54.2696700457189,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,12.3947439308952,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,3.9888,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.61703428784825,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.35763117903167,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.42007846401524,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,9.61915656782628,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,1.68467951934918,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.0909078437197,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.471904344661675,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.61806503219154,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.441822613070325,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.510101240450254,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,brick,,0,0.609166293276624,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,concrete,,0,0.327564101870528,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,wood,,0,0.042134015872469,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction material,other,,0,0.021129249571567,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.578331594261386,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,0.458283175908558,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.073055531504038,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,0.031964267195115,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.32233285040256,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,,insulation,0,0.32233285040256,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WALLS,construction methodology,other,,0,0.026280023832017,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,wood,,0,0.467860607569318,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.437600101610043,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.094539290820639,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.105189996893582,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.894810003106418,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.481048665405669,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,wood,,0,0.312603423024404,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete,,0,0.327761109888047,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.359635467087548,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,tilted roof,,0,0.615901706714934,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,0.658515237630171,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,flat roof,,0,0.384098293285066,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ROOF,construction material,,insulation,0,0.508933719208788,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete,,0,0.647808935267797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,0.352191064732203,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,FLOOR,construction methodology,,insulation,0,0.826673317275489,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,individual,,,0,0.045248472049684,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,central,,,0,0.786733266693636,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING, district heating,,,0,0.16801826125668,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,boiler,non-condensing,,0,0.195396248346481,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,boiler,condensing,,0,0.136418197498893,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,combined,,,0,0.324303049991431,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,electric heating,,,0,0.279695858459037,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,heat pump,,,0,0.064211424463089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,fossil fuels,liquid,,0,0.124472803583407,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE HEATING,fossil fuels,gas,,0,0.875527196416593,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE COOLING,no space cooling,,,0,0.96936599352683,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,SPACE COOLING,space cooling,,,0,0.03063400647317,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,individual,,,0,0.504436687239841,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,central,,,0,0.472668238264112,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW, district heating,,,0,0.022895074496047,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,boiler,non-condensing,,0,0.734398068502158,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,boiler,condensing,,0,0.03063400647317,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,Combined,,,0,0.167880897673253,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,Solar collectors,,,0,0.002900381647262,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,heat pump,,,0,0.064211424463089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,fossil fuels,liquid,,0,0.201841281097522,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,fossil fuels,gas,,0,0.434450737513099,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,DHW,electricity,,,0,0.363738996125912,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.7312680453307,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.7694892262077,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.194056991145,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.6147108539535,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,22.8436326228803,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.2823083144573,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,67.2031027488227,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.24175005683968,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,82.1459263445647,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.23971640508933,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,828.815612212182,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,621.073990874043,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,57.3276985431481,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,13.3409818692439,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,4.0213,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,9.46751593311853,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.32229995255847,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.5511659835669,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,10.5745282910519,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,1.83630588159362,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.37468894218858,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.371101945738777,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.05680210330165,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.3032009170843,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.382217725072028,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,brick,,0,0.614635798641735,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,concrete,,0,0.325289543547482,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,wood,,0,0.037729869599417,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction material,other,,0,0.022338086115323,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.538591128195041,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,0.438264151891234,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.076258115990155,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,0.080152457293657,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.36975897233071,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,,insulation,0,0.363972596346139,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WALLS,construction methodology,other,,0,0.015391783484094,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,wood,,0,0.621548039559378,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.285501812935719,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.092950147504903,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,0.044803458042387,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,0.888175581515601,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.66904034604683,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,0.067020960442012,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,wood,,0,0.173010651193101,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete,,0,0.459328803254184,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,concrete + bricks,,0,0.367660545552716,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,tilted roof,,0,0.484757495063115,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,0.392535997076067,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,flat roof,,0,0.515242504936885,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ROOF,construction material,,insulation,0,0.519886710661394,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,wood,,0,0.015391783484094,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete,,0,0.616947670963191,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,0.367660545552716,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,0.984608216515906,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.840707696463423,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.015391783484094,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.030783566968189,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,individual,,,0,0.045827805925893,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,central,,,0,0.785642630624104,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING, district heating,,,0,0.168529563450003,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,boiler,non-condensing,,0,0.475791880972849,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,boiler,condensing,,0,0.11522257846178,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,combined,,,0,0.345860579149761,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,heat pump,,,0,0.0631563277061,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,fossil fuels,liquid,,0,0.119271048920593,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE HEATING,fossil fuels,gas,,0,0.880728951079407,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE COOLING,no space cooling,,,0,0.959641993144487,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,SPACE COOLING,space cooling,,,0,0.040358006855513,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,individual,,,0,0.515432383005552,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,central,,,0,0.463389457525783,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW, district heating,,,0,0.021178159468665,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,boiler,non-condensing,,0,0.735649668506456,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,boiler,condensing,,0,0.044138547844749,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,Combined,,,0,0.155529085711785,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,Solar collectors,,,0,0.001557736521401,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,heat pump,,,0,0.0631563277061,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,fossil fuels,liquid,,0,0.182421594422792,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,fossil fuels,gas,,0,0.465816941487806,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,DHW,electricity,,,0,0.351804733118475,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,69.239888961076,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,35.3987396957205,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.9350895854807,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,82.7868367402441,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.9365342991359,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.2953466309151,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,57.2011007096179,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.26299463494416,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,73.2107449023346,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.25757102538229,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,792.695080821291,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Heated area [Mm²],,0,569.925901037039,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,53.4811238318698,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,11.8690319283717,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,3.6802,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,8.43022409780074,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.06845653176288,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.37035129880812,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,9.29763292219405,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,1.5913978000627,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.46132195757281,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.286301994561909,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.83717609048307,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.223649999483755,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.274131226732209,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,brick,,0,0.629780337447442,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,concrete,,0,0.32443595373666,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,wood,,0,0.022888420801468,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction material,other,,0,0.022888420801468,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,solid wall,,0,0.515452000442466,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,0.372215816155749,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,cavity wall,,0,0.114455384931553,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,0.121703140079127,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.370092614625981,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WALLS,construction methodology,,insulation,0,0.350896547653335,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,wood,,0,0.77792081950793,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.221643285875853,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction material,aluminium,,0,0.000435894616217,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,double glazing,,0,0.872501684881514,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,0.692820927479394,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,triple glazing,,0,0.127498315118486,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,WINDOWS,construction methodology,,low-e,0,0.05882618550112,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,wood,,0,0.17679889713534,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete,,0,0.437818235722592,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,concrete + bricks,,0,0.385382867142069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,tilted roof,,0,0.494865464755632,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,0.36674757265842,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,flat roof,,0,0.505134535244368,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ROOF,construction material,,insulation,0,0.510594347114709,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete,,0,0.614617132857931,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction material,concrete + bricks,,0,0.385382867142069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,FLOOR,construction methodology,,insulation,0,0.847226229059801,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,individual,,,0,0.046679263235036,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,central,,,0,0.912152237381178,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING, district heating,,,0,0.041168499383786,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,boiler,non-condensing,,0,0.249519106584872,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,boiler,condensing,,0,0.33055131206446,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,combined,,,0,0.354412398808622,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,heat pump,,,0,0.06555095106507,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,fossil fuels,liquid,,0,0.154880704858873,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,fossil fuels,gas,,0,0.843958416325719,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE HEATING,electricity,,,0,0.001160878815408,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE COOLING,no space cooling,,,0,0.903232570950069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,SPACE COOLING,space cooling,,,0,0.096767429049931,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,individual,,,0,0.235425399964627,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,central,,,0,0.730482027119795,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW, district heating,,,0,0.034092572915578,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,boiler,non-condensing,,0,0.728629714835925,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,boiler,condensing,,0,0.052264925164593,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,Combined,,,0,0.084027170155767,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,Solar collectors,,,0,0.069561007301669,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,heat pump,,,0,0.06555095106507,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,fossil fuels,liquid,,0,0.178766404442284,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,fossil fuels,gas,,0,0.492684881108066,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,DHW,electricity,,,0,0.328593776667584,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.7291552640869,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,25.9098839363777,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.5434506569942,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,66.9217556936945,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.8580546058593,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.9788165739658,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,47.8055109805887,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.6142787446587,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,59.526417097272,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Multifamily houses,Multifamily houses,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.901587705940386,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Constructed area [Mm²],,0,3359.92276180543,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Area,Number of dwellings/units [Mil.],,0,48.9606090201541,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Occupied [Mil.],,0,1.83601518026566,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,,BUILDING,Occupancy,Vacant [Mil.],,0,47.1245938398885,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,484.623533682042,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Heated area [Mm²],,0,356.609594897022,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,41.742628157826,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,7.51734301963875,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.4342,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.44463748990856,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.16560876410878,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.907096765621411,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,5.80561417521733,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,1.17291389368936,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.538814950732061,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.66378643831019,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.24662810745855,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.69157750059844,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.27719710313134,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,brick,,0,0.791312555836278,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,concrete,,0,0.025870843597408,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,wood,,0,0.055344382217922,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction material,other,,0,0.127469352137473,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,solid wall,,0,0.964476487346237,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,,insulation,0,0.004364777747537,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WALLS,construction methodology,cavity wall,,0,0.035523512653763,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,wood,,0,0.735032972262567,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,synthetic / pvc,,0,0.034110387553068,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction material,aluminium,,0,0.230856640184365,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,single glazing,,0,0.934774189086284,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,WINDOWS,construction methodology,double glazing,,0,0.065225810913716,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,wood,,0,0.366158270996325,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete,,0,0.555215159405427,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,concrete + bricks,,0,0.07860298634402,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,tilted roof,,0,0.375811924477159,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,,insulation,0,0.037391664688983,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ROOF,construction material,flat roof,,0,0.624164492268613,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,wood,,0,0.028839822504541,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete,,0,0.574489437470321,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,concrete + bricks,,0,0.343465586859603,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction material,other,,0,0.053205153165536,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,concrete slab,,0,0.872231515863549,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,,insulation,0,0.028662109193909,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.028839822504541,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,,insulation,0,0.004364777747537,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,FLOOR,construction methodology,other,,0,0.09892866163191,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,individual,,,0,0.115736741454488,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,central,,,0,0.671762519857738,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING, district heating,,,0,0.212500738687774,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,boiler,non-condensing,,0,0.816666310537089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,boiler,condensing,,0,0.002012686497622,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,combined,,,0,0.12950424251307,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,stove,,,0,0.007624474964982,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,heat pump,,,0,0.044213493996383,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,fossil fuels,liquid,,0,0.159641098625617,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,fossil fuels,gas,,0,0.780724983515657,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE HEATING,electricity,,,0,0.059633917858725,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,individual,,,0,0.376345010213288,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,central,,,0,0.438301926120084,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW, district heating,,,0,0.185353063666627,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,boiler,non-condensing,,0,0.795626932740078,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,boiler,condensing,,0,0.01574417969765,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,Combined,,,0,0.144436602075035,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,heat pump,,,0,0.044213493996383,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,fossil fuels,liquid,,0,0.117548531536412,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,fossil fuels,gas,,0,0.79696801033445,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,DHW,electricity,,,0,0.085513655546843,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,118.751721559189,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.2520122608658,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.4063396109071,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,146.800073401122,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,17.9967966036361,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,30.8131202814165,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,53.4069612538507,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.91432848206424,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,67.2830779409769,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.751233588657608,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,711.912947463002,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,554.37496323906,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,57.9794889228678,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,10.9115725698238,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,2.22,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,7.52552263933154,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.16029646445837,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.22575346603389,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,8.82589793036708,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,1.2838271709162,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.801847468540516,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.62252713676463,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,3.6106084473808,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.3860175115979,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.14316851136151,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,brick,,0,0.669922443282105,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,concrete,,0,0.294234214277755,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction material,wood,,0,0.035842717529621,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,solid wall,,0,0.61032730540683,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,,insulation,0,0.072914768635566,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,cavity wall,,0,0.06211001831573,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.325479224605773,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WALLS,construction methodology,other,,0,0.002082826761147,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,wood,,0,0.511119598920314,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,synthetic / pvc,,0,0.270075180880865,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction material,aluminium,,0,0.21880522019882,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,single glazing,,0,0.647840694863863,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,WINDOWS,construction methodology,double glazing,,0,0.352159305136137,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,wood,,0,0.102455905992593,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete,,0,0.79959610032309,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,concrete + bricks,,0,0.097947368773798,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,tilted roof,,0,0.092468729856329,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,0,0.057667738162541,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,flat roof,,0,0.907530645233152,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ROOF,construction material,,insulation,0,0.026636476031582,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,wood,,0,0.012070002897411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete,,0,0.50112539716946,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction material,concrete + bricks,,0,0.48680397502261,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,concrete slab,,0,0.987929372192069,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,,insulation,0,0.033237395532459,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.012070002897411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,individual,,,0,0.199893696253081,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,central,,,0,0.627465503301264,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING, district heating,,,0,0.172640800445654,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,boiler,non-condensing,,0,0.840704630908893,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,boiler,condensing,,0,0.003668601816353,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,combined,,,0,0.099235184356401,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,stove,,,0,0.035116653081098,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,heat pump,,,0,0.021303722391482,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,fossil fuels,liquid,,0,0.125950265609078,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,fossil fuels,gas,,0,0.81950654882536,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE HEATING,electricity,,,0,0.054543185565561,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,individual,,,0,0.37325059399442,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,central,,,0,0.477463149481693,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW, district heating,,,0,0.149286256523886,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,boiler,non-condensing,,0,0.706967208118625,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,boiler,condensing,,0,0.009987176136264,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,Combined,,,0,0.261770685907856,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,heat pump,,,0,0.021303722391482,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,fossil fuels,liquid,,0,0.157562055228007,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,fossil fuels,gas,,0,0.766125663921466,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,DHW,electricity,,,0,0.076349210233471,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,108.793180169739,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,47.0472073687089,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.7626285858594,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.83544004897,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,18.5220054682908,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,32.3672034723249,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,80.8785824309742,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.88104536626595,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,97.7920233455879,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.07389641087807,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,603.595928527987,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,474.725024068695,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,52.0940794002368,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,9.29569482468752,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.7257,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,6.41668614812134,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.82290095394527,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,1.0561077226209,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,7.47102110743113,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,1.1299088204617,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.694764896794683,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.18629383802086,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.61909002730089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.1611869498027,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.11485594169453,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,brick,,0,0.349526085338145,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,concrete,,0,0.611752614223546,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction material,wood,,0,0.038721300438309,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,solid wall,,0,0.609818284404487,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,0,0.144104704246218,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,cavity wall,,0,0.095233434260035,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,,insulation,0,0.007631428568168,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.135904205540576,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WALLS,construction methodology,other,,0,0.159044075794902,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,wood,,0,0.391144772178534,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,synthetic / pvc,,0,0.303409340279603,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction material,aluminium,,0,0.305445887541863,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,single glazing,,0,0.541082301845869,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,WINDOWS,construction methodology,double glazing,,0,0.45891769815413,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,wood,,0,0.029985075826657,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete,,0,0.734874173065015,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,concrete + bricks,,0,0.235140751108329,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,tilted roof,,0,0.043941108996966,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,flat roof,,0,0.956058891003034,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ROOF,construction material,,insulation,0,0.316316763566818,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,wood,,0,0.008736224611652,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete,,0,0.620218818739443,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction material,concrete + bricks,,0,0.371044956648905,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,concrete slab,,0,0.991263775388348,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.26145214587596,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,wooden floor (rafters + boards),,0,0.008736224611652,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,FLOOR,construction methodology,,insulation,0,0.007631428568168,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,individual,,,0,0.115136753565412,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,central,,,0,0.651478407598981,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING, district heating,,,0,0.233384838835607,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,boiler,non-condensing,,0,0.843000693793211,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,boiler,condensing,,0,0.002937703659812,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,combined,,,0,0.077402907615925,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,stove,,,0,0.055513131246124,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,heat pump,,,0,0.021171358801078,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,fossil fuels,liquid,,0,0.188138599636016,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,fossil fuels,gas,,0,0.76752710529135,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE HEATING,electricity,,,0,0.044334295072634,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,individual,,,0,0.300424435911561,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,central,,,0,0.486314125073673,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW, district heating,,,0,0.213261439014766,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,boiler,non-condensing,,0,0.723423067573014,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,boiler,condensing,,0,0.004920510327568,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,Combined,,,0,0.244984460865098,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,Solar collectors,,,0,0.005526397549392,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,heat pump,,,0,0.021171358801078,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,fossil fuels,liquid,,0,0.133177325863293,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,fossil fuels,gas,,0,0.705283991153928,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,DHW,electricity,,,0,0.161568560010338,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,95.8638711410073,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.9124231065345,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,24.2705796456201,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,120.595794969151,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.636402255316,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.4076122567673,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,61.9538934678393,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.49169705051219,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,76.2073485522839,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.866658060022713,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,483.099537010629,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,364.516150873748,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,44.4489173196536,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.7861586053071,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.4307,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.89226023724605,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.10189902458581,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.79199934347524,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,5.2839809334312,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.892940603721648,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.609237068154257,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.848151454347377,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.19396018642779,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.750367221704403,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.941787347057927,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,brick,,0,0.426966244302696,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,concrete,,0,0.542292480886597,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,wood,,0,0.018649721404134,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction material,other,,0,0.012087926665899,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,solid wall,,0,0.582383650173956,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,0.315804078122962,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,cavity wall,,0,0.119202719035561,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,0.03344599413762,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.143939456251255,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,,insulation,0,0.122923238471973,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WALLS,construction methodology,other,,0,0.154474174539228,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,wood,,0,0.28971396449089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,synthetic / pvc,,0,0.215778860450068,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction material,aluminium,,0,0.494507175059042,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,single glazing,,0,0.383337271962,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,WINDOWS,construction methodology,double glazing,,0,0.616662728038,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,wood,,0,0.085383798580453,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete,,0,0.664067420625876,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,concrete + bricks,,0,0.250548780793671,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,tilted roof,,0,0.079131142632173,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,0.085727471787602,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,flat roof,,0,0.920868857367827,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ROOF,construction material,,insulation,0,0.569637174542925,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete,,0,0.626527980734356,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction material,concrete + bricks,,0,0.373472019265644,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,FLOOR,construction methodology,,insulation,0,0.455385347148048,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,individual,,,0,0.21845734759581,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,central,,,0,0.630305286571254,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING, district heating,,,0,0.151237365832936,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,boiler,non-condensing,,0,0.788410402604683,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,boiler,condensing,,0,0.098446008413244,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,combined,,,0,0.092484242867774,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,heat pump,,,0,0.020693457122102,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,fossil fuels,liquid,,0,0.143651533247125,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,fossil fuels,gas,,0,0.818778569434591,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE HEATING,electricity,,,0,0.037569897318284,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,SPACE COOLING,no space cooling,,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,individual,,,0,0.449500701125254,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,central,,,0,0.424549479942795,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW, district heating,,,0,0.125949818931952,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,boiler,non-condensing,,0,0.735036989878923,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,boiler,condensing,,0,0.075051821047807,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,Combined,,,0,0.159617623632742,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,Solar collectors,,,0,0.009634219326229,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,heat pump,,,0,0.020693457122102,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,fossil fuels,liquid,,0,0.104834841731772,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,fossil fuels,gas,,0,0.798739800182881,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,DHW,electricity,,,0,0.096463551172146,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,80.0518063939219,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,38.7155951195131,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.9422352632489,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,102.839006078293,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.1839503691411,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.5234421340988,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,41.5721656945272,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.10507468740742,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,52.7154389553058,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.719359071863332,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,368.615582330508,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,284.375168188917,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,37.5183094542811,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.11047313437985,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.0873,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.65014114990941,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.853920783454507,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.606411201015936,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,3.99240309185011,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.640205557937498,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.477864484592246,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.582277957743466,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.91621498265875,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.647227805521712,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.835007823529,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,brick,,0,0.628527205675161,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,concrete,,0,0.352280243952628,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,wood,,0,0.009594835816797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction material,other,,0,0.009594835816797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,solid wall,,0,0.679077223479146,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,0.336597772122633,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,cavity wall,,0,0.098621757776621,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,0.067600127440227,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.196267387340677,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,,insulation,0,0.132795877604142,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WALLS,construction methodology,other,,0,0.026033631403557,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,wood,,0,0.124496197564509,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,synthetic / pvc,,0,0.334975129548048,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction material,aluminium,,0,0.540528672887443,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,single glazing,,0,0.39082789493519,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,double glazing,,0,0.609172105064811,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,WINDOWS,construction methodology,,low-e,0,0.199903371966488,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,wood,,0,0.042551874298605,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete,,0,0.619860660697205,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,concrete + bricks,,0,0.337587465004191,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,tilted roof,,0,0.030976893775939,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,0.00437901517386,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,flat roof,,0,0.969023106224062,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ROOF,construction material,,insulation,0,0.470799009707976,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete,,0,0.570184136133225,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction material,concrete + bricks,,0,0.429815863866775,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,FLOOR,construction methodology,,insulation,0,0.444765378304419,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,individual,,,0,0.161301803080001,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,central,,,0,0.67881462646501,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING, district heating,,,0,0.159883570454989,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,boiler,non-condensing,,0,0.617387501237586,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,boiler,condensing,,0,0.247483891742949,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,combined,,,0,0.117585709613429,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,heat pump,,,0,0.017568060261938,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,fossil fuels,liquid,,0,0.103363409231975,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE HEATING,fossil fuels,gas,,0,0.896636590768026,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE COOLING,no space cooling,,,0,0.933575786880203,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,SPACE COOLING,space cooling,,,0,0.066424213119798,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,individual,,,0,0.357064535806912,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,central,,,0,0.509085525141657,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW, district heating,,,0,0.133849939051432,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,boiler,non-condensing,,0,0.652835697899479,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,boiler,condensing,,0,0.087106477151611,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,Combined,,,0,0.233687009020368,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,Solar collectors,,,0,0.008827918522506,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,heat pump,,,0,0.017568060261938,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,fossil fuels,liquid,,0,0.082829131896462,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,fossil fuels,gas,,0,0.820213506266596,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,DHW,electricity,,,0,0.096988366394624,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,68.5949054087128,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,37.7299187462385,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.8940776119496,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,89.8858587585534,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,14.7112161289973,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.9706763155633,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,28.854318323735,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.72167382229374,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,37.3461956698304,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.551939959176533,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,471.604867412803,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,342.462063470565,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,53.2612465965062,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.1064598230906,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.1215,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,4.48046925838171,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.793465450218903,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.832525114489981,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,4.7206785316998,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.759490302873531,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.626290988517262,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.430275449272439,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.49148599571311,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.487020894976881,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.618990600114396,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,brick,,0,0.607483013022739,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,concrete,,0,0.380140106656996,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,wood,,0,0.006187319128174,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction material,other,,0,0.006187319128174,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,solid wall,,0,0.717442325550797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,0.303706022533488,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,cavity wall,,0,0.218166152652372,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,0.220683930311478,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.064391521796831,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WALLS,construction methodology,,insulation,0,0.098376232742306,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,wood,,0,0.182404902117955,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,synthetic / pvc,,0,0.292370814139883,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction material,aluminium,,0,0.525224283742161,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,single glazing,,0,0.407942616861077,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,double glazing,,0,0.573493569373026,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,,low-e,0,0.242441878501457,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,WINDOWS,construction methodology,triple glazing,,0,0.018563813765898,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,wood,,0,0.07303949775981,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete,,0,0.521642378513779,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,concrete + bricks,,0,0.405318123726411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,tilted roof,,0,0.074967910466589,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,0.090254562311121,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,flat roof,,0,0.925032089533411,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ROOF,construction material,,insulation,0,0.528864629023131,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete,,0,0.526712454382639,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction material,concrete + bricks,,0,0.473287545617361,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,FLOOR,construction methodology,,insulation,0,0.404799979560585,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,individual,,,0,0.185888128070767,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,central,,,0,0.627915735946842,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING, district heating,,,0,0.186196135982392,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,boiler,non-condensing,,0,0.603755563909237,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,boiler,condensing,,0,0.23421968045719,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,combined,,,0,0.151043926402493,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,heat pump,,,0,0.011000373280267,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,fossil fuels,liquid,,0,0.046885654738744,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE HEATING,fossil fuels,gas,,0,0.953114345261256,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE COOLING,no space cooling,,,0,0.95186648491452,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,SPACE COOLING,space cooling,,,0,0.04813351508548,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,individual,,,0,0.304281161634038,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,central,,,0,0.546422462304251,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW, district heating,,,0,0.149296376061711,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,boiler,non-condensing,,0,0.630895692820674,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,boiler,condensing,,0,0.110202257745928,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,Combined,,,0,0.212388516708578,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,Solar collectors,,,0,0.035532703493739,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,heat pump,,,0,0.011000373280267,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,fossil fuels,liquid,,0,0.058254582564184,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,fossil fuels,gas,,0,0.903535698564712,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,DHW,electricity,,,0,0.038234394003089,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.1712552823073,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,36.0256115974891,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,22.884764716485,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,65.5156424956581,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,12.0944786732977,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.6467039010689,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,28.1526800571132,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.19768452301152,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,37.3613617159787,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.644167011074696,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,236.470365378459,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Heated area [Mm²],,0,175.749683766163,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,15.1308472765461,Mm²,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.23290704322651,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.5633,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.39056113972227,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.42842412055838,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Tenure/ownership status and distribution,Social housing  -  dwellings/units [Mil.],,0,0.413921782945852,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.46190601711758,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.437404835768788,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,0.333596190340143,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.366161919378824,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.1155087352492,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.342982520720007,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.430020749989017,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,brick,,0,0.623281236899561,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,concrete,,0,0.365714270073887,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,wood,,0,0.005501421217564,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction material,other,,0,0.005501421217564,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,solid wall,,0,0.637193886347502,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,0.35939742857463,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,cavity wall,,0,0.261974302264808,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,0.263009541409503,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,honeycomb bricks / hollow blocks wall,,0,0.10083181138769,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WALLS,construction methodology,,insulation,0,0.160701186807991,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,wood,,0,0.371545522703474,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,synthetic / pvc,,0,0.626143262638294,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction material,aluminium,,0,0.002311214658231,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,double glazing,,0,0.910128474617088,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,0.306747643644494,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,triple glazing,,0,0.089871525382912,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,WINDOWS,construction methodology,,low-e,0,0.073365611138797,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,wood,,0,0.075345683914983,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete,,0,0.604529636280654,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,concrete + bricks,,0,0.320124679804363,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,tilted roof,,0,0.075345683914983,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,0.117679539341735,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,flat roof,,0,0.924654316085017,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ROOF,construction material,,insulation,0,0.636129960730598,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete,,0,0.560136569355034,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction material,concrete + bricks,,0,0.439863430644966,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,concrete slab,,0,1,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,FLOOR,construction methodology,,insulation,0,0.833279400261369,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,individual,,,0,0.220181488770254,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,central,,,0,0.602654480217111,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING, district heating,,,0,0.177164031012635,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,boiler,non-condensing,,0,0.618603540254401,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,boiler,condensing,,0,0.225872577392692,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,combined,,,0,0.130887532390181,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,heat pump,,,0,0.024656608438753,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,fossil fuels,liquid,,0,0.049600667192009,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,fossil fuels,gas,,0,0.944409913524719,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE HEATING,electricity,,,0,0.005989419283272,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE COOLING,no space cooling,,,0,0.870377005074776,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,SPACE COOLING,space cooling,,,0,0.129622994925224,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,individual,,,0,0.355160497277673,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,central,,,0,0.514039207085769,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW, district heating,,,0,0.130800295636558,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,boiler,non-condensing,,0,0.335923168347272,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,boiler,condensing,,0,0.244687421750382,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,Combined,,,0,0.153279242528758,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,Solar collectors,,,0,0.241473817410861,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,heat pump,,,0,0.024656608438753,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,fossil fuels,liquid,,0,0.060471335380726,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,fossil fuels,gas,,0,0.890770540391075,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,DHW,electricity,,,0,0.048781761246585,dimensionless,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,44.8383972403193,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,28.2584754398867,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,23.011783550376,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,57.3417635275283,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,10.3592804775923,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,31.6681688993658,kWh/m²/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.4025864615141,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.523422094829123,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,17.566380277057,TWh/year,Own calculations,,,, +EU28,eu28,Residential sector,Appartment blocks,Appartment blocks,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.156744690801356,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,,BUILDING,Area,Number of buildings [Mil.],,0,1.506,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,1531.11978984153,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Area,Heated area [Mm²],,0,1531.2566362293,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,479.051713777538,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,10.7585880531409,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,3.20237243704646,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.1226756332051,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,6.01155742616099,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,9.25413483806431,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,1.19411641277256,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.34740427971394,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Windows,,0,3.55285695924135,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.17298978850473,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.13116178118539,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,79.4917548813303,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.3089305820495,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.12396236301311,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,167.498711623049,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.8375207654162,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.97437842179247,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,223.041858179945,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,40.8862505379566,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,361.413512440138,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,19.9963410262747,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,1192.51340220184,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,1192.37655581407,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,249.60417,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,8.63484438122765,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,2.02707758486108,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,5.56930242687703,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,4.1640659429867,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,7.6508410474988,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.949123926204501,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.954021909864627,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,2.55348282519165,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.734339798345368,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.791668015903185,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.0963083697765,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.7088108216157,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.68335507756077,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,159.18252282926,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.4753869142234,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.94105253556355,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,176.648560786275,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,22.4816815696157,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,258.515987182457,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.88707991819937,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,630.201024690508,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,630.201024690508,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,139.379077,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.34571539568519,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,1.07663206577643,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.6018085603127,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.17248492851987,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,3.85237163184456,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.481055371682849,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.77748969650767,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.3063142079931,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.57232090159373,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.652170399741619,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,75.7893456707919,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,40.8161951257163,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,1.68613998343589,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,138.585172829031,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.3150443787058,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,2.90943470749274,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,93.2458860626271,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,12.4609371254311,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,121.862211979812,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.81318771593327,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,867.161769314444,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,867.161769314444,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,244.858836,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.3902954231276,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,1.79148766981959,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.44620100191839,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.37289182485844,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,5.56002215897183,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.687447972486031,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.655188961874342,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.45631479638364,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.465644532243367,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.552214703705077,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.3580997749733,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,44.2951927599261,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.05386479424889,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.643037842593,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,37.6423050392962,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.93084606163425,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,120.898246118754,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,22.0757390704658,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,177.919152353847,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,12.1964271278193,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,855.63572725733,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,855.63572725733,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,245.303556,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.33211951515376,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,1.79093509042911,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.3626158291212,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.37353457030729,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,5.47054487995013,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.683043220972894,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.486700439624346,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.05626551753877,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.340847381846131,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.436806378060401,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,64.0539147401028,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,43.3815090977142,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.08916898398978,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,140.612925841628,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,39.042091111116,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.05287742752656,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,89.4581808910312,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,21.2796393459979,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,160.25926330786,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,12.6959239911828,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,850.516570722286,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,850.516570722286,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,269.8530612,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,6.45497718601964,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.92734392567985,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.35748497127759,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,3.42519416537993,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,5.66059883653042,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.66371047528512,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.332244121578252,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.78162836522931,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.263405552112775,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.35771739786158,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,52.8383935227673,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,46.1460327761452,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.1001590461122,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.732084821072,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.9161859477526,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.27153451622461,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,75.2574497595404,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,25.1466469408391,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,127.710248714955,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,14.8204848385168,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,453.353287527701,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Area,Heated area [Mm²],,0,453.353287527701,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,126.064359,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.38043686438099,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.826693452025033,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.86682413926726,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.72857690622975,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,3.04651471489971,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.302445117865473,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.274763646879295,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.73145459281732,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.177126109969569,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.277974437911807,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,46.1474602321273,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,39.2126075903504,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.10430048976684,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,95.0849176483599,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,31.7662101250883,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.15341462763511,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,31.8833656317796,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.12117838399715,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,57.163380715499,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Total,Total,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,5.2083686969844,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,,BUILDING,Area,Number of buildings [Mil.],,0,0.44,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,370.088185598798,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Heated area [Mm²],,0,370.088185598798,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,93.054823468,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.86613572392038,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.675011173540494,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,2.47420343505724,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.65174984844304,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,4.05215387419061,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.503645047425759,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.93196655726292,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Windows,,0,5.00714029927308,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.68809878519086,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.71323877405098,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,113.024620024768,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.6054033324278,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.87509817852076,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,213.55097300443,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,41.5038855112974,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.98436671333519,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,43.4013429774846,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.7000524032852,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,80.8773473653647,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.86213673948986,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,415.230812552826,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,415.230812552826,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,55.602793,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,5.25659614286043,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.542100371812613,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,3.604860863866,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.52446491883272,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,4.71253844207438,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.544057700786054,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.51782545334001,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,3.58869860768602,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.10536688825158,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.23414926265928,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,137.903073172512,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,70.8584452824596,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.47572194074833,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,238.582024676025,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.8611867924642,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,3.90538164625953,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,58.8484788757285,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.42704925399619,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,100.688242761029,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.93837935295572,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,195.342117091985,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,195.342117091985,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,28.840077,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.46885159100521,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.264772865857242,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.5846669908065,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.23595352108341,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,2.21332545133617,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.25552613966904,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.29027868398124,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.33657503839863,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.909534261110384,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.05581108755659,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,135.674564334671,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,68.6612931652084,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.59161222303525,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,221.446126100157,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,34.8601181646332,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.02217533600865,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,27.3748699274324,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.14693312648192,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,44.0434553396744,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.00536849209712,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,233.72063593165,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,233.72063593165,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,52.249898,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.01224955557883,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.346260636910397,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.76505884082656,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.53423156765799,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,2.55765643490668,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.311767829002409,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.99357578798549,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,3.26998712437848,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.664287623143231,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.758868767804084,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,123.969482129385,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,65.2303951724956,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.83691785005397,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,202.091098768056,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.4438800019787,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.5865534469082,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,30.0836736819483,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.73891074724279,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,48.3048323085417,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.85193911482763,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,229.537728675158,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,229.537728675158,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,54.347438,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.99173935703513,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.32951590005897,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.71153521431411,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.54626172084236,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,2.50356291935125,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.309645023453136,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.724374690821589,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.91631474597166,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.498414419848175,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.651286127381351,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,109.552304169333,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.3240265680792,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.9688696656731,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,192.084541247766,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,35.180299109095,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.98696043797644,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,25.9999695564123,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.62741008086582,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,45.2353448835479,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.911959124653,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,212.174811140952,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,212.174811140952,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,59.655084,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.78425519482939,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.291274173122647,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.60500696169027,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.41106653853832,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.36541690796045,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.288170412664842,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.499735589880292,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.40221912856594,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.366234336666604,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.503083750641905,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,82.5966069739024,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,57.1771777019261,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.86457236262405,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,137.534571550741,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,32.0911126473325,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.96451516169832,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.3072292275384,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.96286580867054,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,30.2347168109699,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.91439802063009,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,127.976642357786,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Heated area [Mm²],,0,127.976642357786,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,35.012174,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.63403621145569,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.172465225365695,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.01687061294892,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.811673119466544,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.46491346357003,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.169122747885664,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.396110700912813,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Windows,,0,2.2159582631063,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.23756779974277,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.395002586956688,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,65.2274456620671,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,54.1495005866812,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,2.69361750917898,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,110.957824000679,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.102204838207,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,4.44928635394838,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.74927566282732,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.03306491989759,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.7694144873998,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Offices,Offices,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.05394363357894,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,,BUILDING,Area,Number of buildings [Mil.],,0,0.46,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,359.677435230126,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Heated area [Mm²],,0,359.677435230126,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,117.374246348,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,4.76274860238982,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,1.39765753667528,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.94105052678308,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,2.82169807560674,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,4.2423522818426,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.520396320547224,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Walls,,0,2.54641584163931,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Windows,,0,7.02215658552998,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Roof,,0,2.1370733776318,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,BUILDING,Construction features (U-values),Floor,,0,2.16842818496802,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.207965417703,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.07067076386,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,5.23821572187783,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,450.793844113347,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,81.2444548606058,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.3901744566903,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,55.8507983493637,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,9.74961520210003,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,165.877484968394,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.53600665921771,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,193.335078866814,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,193.335078866814,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,51.309158,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.60043705952214,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.707166034203382,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.26098274973681,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.33945430978533,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,2.31623374779508,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.284203311727061,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.86135100888338,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,5.85177694859076,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.48035284652248,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.60960515780957,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,142.104940632126,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,92.9183733086693,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.3105514226144,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,430.722417437373,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,96.9923251748267,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.55553058300722,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,29.7516655964519,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,5.51429656278918,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,84.9278367249725,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,4.97659453718256,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,109.789067089817,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,109.789067089817,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,31.589581,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.44566489112757,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.380660286366785,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.685758139417966,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.759906751709606,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,1.28605367079983,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.159611220327737,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.51432119897313,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,5.34786866532495,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,1.12461601096684,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,1.31486739479389,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,132.887488288272,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,90.4250541095854,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.36312486991837,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,370.377686895053,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,97.3687403009802,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,8.4820072019695,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,16.4688201779879,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.31988455558683,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,41.5946523728455,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.07583770860578,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,208.825881299542,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,208.825881299542,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,67.784367,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.77628230601911,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.843463471379537,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.20396261708392,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.57231968893519,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,2.49199774926913,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.28428455674998,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.23447483166321,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,5.37330289577633,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.901422598451267,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,1.1518511874572,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.744317797697,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,97.0103398395033,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.83476336425448,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,380.318344306574,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,110.546799792427,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.3340687180295,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,33.6008031030289,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,7.85272586520747,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,81.5783344316555,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,7.49334484780537,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,204.851091523214,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,204.851091523214,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,68.480827,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,2.73367260755708,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.85487729047532,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.18316013141242,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.55051247614466,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,2.451754317108,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.281918290449079,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.44089209850063E-16,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.940188554828064,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,4.37447054830958,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.668649555249053,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.847139183359007,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,119.270007914889,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,104.944943072666,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.96208307792677,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,354.14692081628,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,119.161688070841,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.5506490425878,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,26.3776924165724,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,8.48966182776801,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,74.7086952614527,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,8.1602909458072,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,229.947003349349,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,229.947003349349,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,82.551314,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,3.07718874739484,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,1.0425365087618,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,1.3381149298569,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,1.73907381753795,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,2.79266349893332,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.28452524846152,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.44089209850063E-16,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.618723807190781,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,3.6673517553741,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.515142764511795,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.687948737846762,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,102.337334106122,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,107.135913932968,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.71392199734078,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,258.262850241274,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,120.629661449806,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.4357046258755,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,25.602626733137,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,10.7416364981403,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,61.7864274960016,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,9.95813706005659,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,117.336419706072,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Heated area [Mm²],,0,117.336419706072,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,37.975915,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,1.52519895364938,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.433026527383414,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.698187291130323,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.827011662519054,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,1.42491893431909,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.100280019330285,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-3.46944695195361E-16,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.446666949143282,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Windows,,0,3.39982966965423,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.326881079540302,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.423866694042343,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,85.617580074043,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,80.5404409898874,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.73572384251122,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,232.897093233437,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,85.2340352633278,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.5061295299576,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.6786008823789,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.31351518096986,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,28.5600627039763,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Trade,Trade,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,3.23684047826714,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,,BUILDING,Area,Number of buildings [Mil.],,0,0.062,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,307.276046079179,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Area,Heated area [Mm²],,0,307.306046079179,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,106.581692,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.231691393497485,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.231691393497485,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.183073359538004,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027186066378846,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.203519004361954,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.02817238913553,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.46944695195361E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.40639352248968,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Windows,,0,3.45309982813579,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.31017498991728,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.03477012056888,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,86.4866035997932,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,33.698660045169,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.98912019479488,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,49.7517672913053,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,13.5551186675881,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.63853618554651,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,36.3511640907748,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,10.3115962239264,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.7925018121949,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.44472748285233,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,237.134548459507,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,237.104548459507,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,51.435167,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.158274445111788,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.158274445111788,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.131148845286546,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.011275597158589,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.137166922877989,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.021107522233799,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-4.85722573273506E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,0.622311569787729,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,1.78620322235388,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.550419694785666,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,0.507833120759398,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.5189998941545,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.9732678649188,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.61588098082755,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,31.5725034886172,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.10652090656007,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.976346940692222,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,28.2529682691809,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.77113746809155,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,7.71750977432566,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.416960256617909,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,119.62770368642,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,119.62770368642,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,26.150562,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.078259279029228,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.078259279029228,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.063000873382421,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.006661720168908,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.068385430835578,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.00987384819365,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,0.599134813589458,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,1.79331732535744,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.497680102436052,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.504866470015748,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,55.7560924189818,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,19.914143775893,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.646444891575935,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,28.5497590374545,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.14776619930491,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,0.974664121558789,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,12.7886349976336,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.40123352818667,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.53193894517892,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.213068665156427,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,143.602563043155,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,143.602563043155,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,36.520987,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.09958457246918,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.09958457246918,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.079878670512604,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.009968728850706,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.087348343323439,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.012236229145741,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.94902990916057E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.544178029136795,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,1.69686457374815,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.419846560581009,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.424503907646237,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,49.0666536205993,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.2443362449415,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.754603972251592,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,33.7450206508158,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.86452683384552,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.24431086830504,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,13.2465064219117,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.91057283020725,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,5.02455768531242,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.323741269260023,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,132.122912790309,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,132.122912790309,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,32.508294,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.093332366139,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.093166715472266,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.076535947838641,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.008359682612742,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.082316285897492,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.011016080241507,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-2.42861286636753E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.435717851381964,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,1.46753434274955,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.304736638703953,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.383847260943368,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,39.5680009955417,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,15.164520607748,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.678246388561161,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,27.8181156185518,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,6.96472838357947,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.22445968826629,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.59172662048253,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.01069066850054,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.83718964446872,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.226411437923546,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,118.910655868212,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,118.910655868212,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,32.959351,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.083761346110955,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.083761346110955,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.068692622401706,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.007584168111116,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.073383468762208,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.010377877348747,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,2.08166817117217E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.288234396736279,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.36503755708298,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.234373870672285,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.330593786768285,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,32.6534778491769,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.8629436162228,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.794527049157027,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,25.7317822601133,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,9.27634105880841,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.51379885804344,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.76112054846325,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.4901616886313,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.2397899202706,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.305742180952978,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,66.524350821297,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Area,Heated area [Mm²],,0,66.524350821297,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,18.91769,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.039405370379503,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.039405370379503,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.031726532985854,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.002717087508053,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.034478226688302,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.004927143691201,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.322615466705764,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.53997583484618,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.173508185091237,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.386843612080912,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,37.9929000567891,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,20.9993226335376,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,0.805698053455819,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,23.7467807169196,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,8.23578356016233,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,1.21471043950501,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,3.2001018283655,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.39970522531411,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,1.66054699471269,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Education,Education,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.155802000298247,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,,BUILDING,Area,Number of buildings [Mil.],,0,0.025,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,115.42491168816,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Area,Heated area [Mm²],,0,115.581071793362,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,32.5916099615385,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.146610586560539,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.146610586560539,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.206229477749351,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.077640523037129,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.129094732011887,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.017515854548652,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,3.12250225675825E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.77485311285969,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.27123267360967,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.50167312214038,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.4913303871461,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,161.701137281842,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,74.4952484708016,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,17.8173745841663,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,194.625060690126,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.5585834036073,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.3484744442258,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,32.5028167945726,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.75017231510288,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,25.4208185365673,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.09372826115213,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,74.5234561073221,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,74.3672960021195,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,16.276259,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.140337203890057,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.140337203890057,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.327546487206728,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.054435068147765,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.119818270529774,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.020518933360283,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.23305709597984,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,3.19815259320954,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,0.998977668310212,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.04304047144533,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,147.546519943092,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,67.8007155668409,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.1552925128023,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,183.830966446196,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.5431994686386,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,23.5721053102308,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,23.9780304948272,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.27681692687793,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,15.4276866515041,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.399471471240224,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,47.6926316960944,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,47.6926316960944,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,8.70261,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.071250244403176,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.071250244403176,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.128898645230947,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.027757456912814,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.061688633127908,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.009561611275268,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-2.25514051876985E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.11349031586187,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.95824100500143,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.830747462066785,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.918807902470169,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,128.547751052024,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,69.9633437674525,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.9579731802833,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,165.273433252298,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,25.003393966635,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,24.5383119110967,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,18.5612555778292,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.669870756706126,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.05262165367069,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.217594786367978,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,66.9411813531389,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,66.9411813531389,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,15.82868,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.096342790988846,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.096342790988846,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.205733862483988,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.04210265235423,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.083843502327268,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.012499288661578,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-5.03069808033274E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.9184332061262,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.81841419665082,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.651225291193535,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.718484850031969,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,122.339741108202,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.4119483536461,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,18.6614387113953,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,155.502963418874,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.9469804471992,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,25.8465360259115,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,20.9019432942629,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.04871193026334,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.1397497306343,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.379049090464973,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,71.7358308462046,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,71.7358308462046,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,18.723811,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.095515112334226,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.095515112334226,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.197350469076231,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.044574685098999,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.083472867327998,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.012042245006228,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.669990465534877,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.51993139166625,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.488576961613213,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.584936972493201,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,100.550249885107,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.5343403211951,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,19.3553588618732,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,123.943010150013,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,21.3444253083703,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,26.6415973208299,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.69321945862698,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.11961737180159,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,10.8023119295705,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.399648985377543,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,69.0888748844367,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,69.0888748844367,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,18.939418,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.092276860427226,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.092276860427226,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.152548999543056,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.04309606172099,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.080326072846475,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.011950787580751,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-3.98986399474666E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.414589177017644,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.08936274598457,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.354987956925344,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.528537777797643,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,73.352109737616,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,59.5743410289377,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,20.0532981437379,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,91.6972092915175,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,23.7853490272587,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,28.0706375956008,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,6.48501644875859,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.29567883786151,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,8.27462578876249,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.450480667503145,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,38.2532937731663,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Area,Heated area [Mm²],,0,38.2532937731663,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,6.129868,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.0427444638942,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.0427444638942,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.053166683223733,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.014996190712308,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.037420835569523,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.005323628324677,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.21430643318377E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.323099066607346,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.6187632075138,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.18403025906965,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.344641695804868,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.8115909822248,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,52.8808102756975,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,21.6579425099182,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,63.0911229024409,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,16.7336577901011,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,29.2077270761125,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.61584388291478,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.340798650547809,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,3.53073502315501,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Health,Health,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.102575113410491,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,,BUILDING,Area,Number of buildings [Mil.],,0,0.126,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,152.323511715882,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Heated area [Mm²],,0,152.27419799845,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,48.773148,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.334109008673192,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.334109008673192,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.148943515648372,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.185165493024821,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.278861823002808,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.055247185670384,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.74304302999195,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.39461489922005,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.59660954613682,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.48213217074007,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,120.341025095429,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.6499984251661,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.86516165561096,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,163.989555589817,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,33.2396972939265,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,12.1739952323723,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,19.5661224990462,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.45742230244353,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,26.825763762969,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.62120467559187,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,124.441398322565,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,124.490712039998,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,26.054191,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.21764743371242,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.21764743371242,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.107158437384518,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.110488996327902,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.181661092192079,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.035986341520341,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,6.93889390390723E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.3710872044334,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,3.36753273844894,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.08563257880238,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.19229155382815,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,112.788607780861,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.6353139632279,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.87305379617605,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,164.944493691494,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.3496682970248,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.6178360998197,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,15.1427017290972,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.34214196835198,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,21.8553558381523,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.73862767259733,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,70.176276143185,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,70.176276143185,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,18.399066,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.180403039630893,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.180403039630893,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.086998724637879,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.093404314993015,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.150606088540537,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.029796951090356,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,4.5102810375397E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.13913462586741,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,3.28409604743602,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.875196138281234,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.97321105150671,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,106.783323686064,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,79.2584634112863,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.00589884154745,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,151.445023648828,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.2454995979995,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,10.6067996656624,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.11276660607118,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,1.72251582117378,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.3721935024243,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.556488943306567,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,89.3283657047003,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,89.3283657047003,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,32.473044,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.222270820835866,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.222270820835866,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.105846078598326,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.11642474223754,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.185610470639467,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.036660350196398,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,1.00583256923148,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.99877148616368,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.696139208011164,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.678431725786425,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,91.9225399810248,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,75.5528217856448,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.11290291622311,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,127.072540640774,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.7931037733001,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,9.54552596831765,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.93387238754334,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.79991286414281,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.203868615926,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.934999725726939,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,91.3412759703043,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,91.3412759703043,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,32.184552,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.222661475752588,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.222661475752588,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.104500781542775,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.118160694209813,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.186015379749829,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.036646096002759,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,-6.24500451351651E-17,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.709703557176178,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.50163996326875,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.492402204371452,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.597491935071498,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,81.9485594864952,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,64.5357602177482,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.76518101339225,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,112.75911272109,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,24.927254878979,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.1646239879954,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,8.19768924365965,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.39951942372954,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,11.3193522340159,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.802272530869753,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,91.3427003488868,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,91.3427003488868,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,34.225015,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.223974872727857,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.223974872727857,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.105598915400439,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.118375957327419,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.187026225622188,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.036948647105669,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.491971192931483,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,2.19026553588367,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.363393511069895,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.548156201469561,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,72.5200188100638,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.001857733426,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,7.63806067465159,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,98.1231499095901,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,27.7588341863335,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.2874192654728,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,7.34754302966466,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.92290603716555,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,9.99385683515892,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.950046516409778,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Constructed area [Mm²],,0,37.2552927395621,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Heated area [Mm²],,0,37.2552927395621,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Cooled area [Mm²],,0,10.573632,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.066892541088411,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.066892541088411,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.032085068682509,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.034807472405902,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.055808313990148,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.011084227098263,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Walls,,0,0.350821079346964,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Windows,,0,1.65939936427942,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Roof,,0,0.202246737132048,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,BUILDING,Construction features (U-values),Floor,,0,0.365720184594989,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,45.0234939977343,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,62.7076131707913,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,8.54320156009459,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,62.6793075918055,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,20.878135108129,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,11.5368566689565,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,2.00997241764284,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,0.690757467144299,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,2.76494492554211,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Hotels and Restaurants,Hotels and Restaurants,Post 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.220757717479636,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,,BUILDING,Area,Number of buildings [Mil.],,0,0.393,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Constructed area [Mm²],,0,226.32969952938,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Heated area [Mm²],,0,226.32969952938,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Cooled area [Mm²],,0,80.676194,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.417292738099469,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Area,Number of buildings [Mil.],,0,0.417292738099469,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.169175318429052,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.248117419670417,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Occupied [Mil.],,0,0.348153122654455,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Vacant [Mil.],,0,0.069139615445014,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Occupancy,Secondary dwellings/ units and others [Mil.],,0,1.11022302462516E-16,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Walls,,0,1.69922274349467,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Windows,,0,4.32247557934589,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Roof,,0,1.54805124980015,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,BUILDING,Construction features (U-values),Floor,,0,1.5447642850478,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,148.263503625908,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,71.9063945974753,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.73857237050597,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,199.191149069081,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.2262301562073,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.78975441635391,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,35.3696134687026,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,6.91739209109856,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,46.6195959946487,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,Before 1945,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,2.43853720797083,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Constructed area [Mm²],,0,147.848107892808,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Heated area [Mm²],,0,147.848107892808,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Cooled area [Mm²],,0,48.926602,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.261552096130816,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Area,Number of buildings [Mil.],,0,0.261552096130816,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.13760504339643,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.123947052734386,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Occupied [Mil.],,0,0.218301979553853,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Occupancy,Vacant [Mil.],,0,0.043250116576962,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Walls,,0,1.2474585310509,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Windows,,0,3.74162875028161,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Roof,,0,1.09336588057695,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,BUILDING,Construction features (U-values),Floor,,0,1.13878488580992,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,125.932828276926,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,72.2152094372198,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.13761560713699,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,182.537978296724,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.9627026950622,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.16484536538573,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,20.6747158209892,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,4.15023938950888,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,27.899355432473,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1945 - 1969,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.41704662760563,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Constructed area [Mm²],,0,87.5732289830074,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Heated area [Mm²],,0,87.5732289830074,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Cooled area [Mm²],,0,25.697181,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.10128635048911,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Area,Number of buildings [Mil.],,0,0.10128635048911,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.052485186836991,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.048801163652119,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Occupied [Mil.],,0,0.084600749362311,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Occupancy,Vacant [Mil.],,0,0.016685601126799,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Walls,,0,1.01984348768136,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Windows,,0,2.98383711546836,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Roof,,0,0.796481937161275,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,BUILDING,Construction features (U-values),Floor,,0,0.904013590770989,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,99.7870261870611,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,78.3077760445915,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.73880304160454,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,134.134078495459,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,28.9848571483152,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,5.94697490956064,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,9.93953877567282,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,2.20049933729575,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,12.2673501660187,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1970 - 1979,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,0.744829120399401,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Constructed area [Mm²],,0,124.743141982258,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Heated area [Mm²],,0,124.743141982258,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Cooled area [Mm²],,0,40.00186,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.183565377235769,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Area,Number of buildings [Mil.],,0,0.183565377235769,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.085720932412984,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.097844444822784,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Occupied [Mil.],,0,0.153565658505844,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Occupancy,Vacant [Mil.],,0,0.029999718729924,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Walls,,0,0.825167436797231,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Windows,,0,2.8996521625876,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Roof,,0,0.616637650368246,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,BUILDING,Construction features (U-values),Floor,,0,0.704281626512557,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,101.866402451011,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.3016586058804,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.58575946768647,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,143.081849141403,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.3324165359899,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.56813790503289,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,14.1314472300585,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.72490483340219,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,18.6678095817767,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1980 - 1989,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.21335307973435,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Constructed area [Mm²],,0,126.04688745214,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Heated area [Mm²],,0,126.04688745214,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Cooled area [Mm²],,0,39.058634,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.195198596335736,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Area,Number of buildings [Mil.],,0,0.195198596335736,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.089533284937027,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.105665311398709,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Occupied [Mil.],,0,0.163423110515552,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Occupancy,Vacant [Mil.],,0,0.031775485820184,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Walls,,0,0.629437491937171,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Windows,,0,2.29720902147863,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Roof,,0,0.440649041401353,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,BUILDING,Construction features (U-values),Floor,,0,0.576050494222736,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,77.1820336920771,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,76.9110986722175,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.64740906445456,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,107.224446245111,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,30.6037575853723,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.67260940614855,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.5978835952773,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.63273997333235,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.3563693548044,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,1990 - 1999,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.19534096655178,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Constructed area [Mm²],,0,129.05252513045,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Heated area [Mm²],,0,129.05252513045,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Cooled area [Mm²],,0,41.5228792,Mm²,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of dwellings/units [Mil.],,0,0.193520164529364,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Area,Number of buildings [Mil.],,0,0.193520164529364,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Owner occupied -  dwellings/units  [Mil.],,0,0.087522542385225,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Tenure/ownership status and distribution,Private rented  -  dwellings/units [Mil.],,0,0.105997622144139,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Occupied [Mil.],,0,0.161782662405774,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Occupancy,Vacant [Mil.],,0,0.03173750212359,1e6 dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Walls,,0,0.444451763935203,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Windows,,0,1.84577582045195,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Roof,,0,0.342327724627241,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,BUILDING,Construction features (U-values),Floor,,0,0.478343276228201,dimensionless,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space heating [kWh/m² year],,0,76.4761107016971,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Space cooling [kWh/m² year],,0,73.800027553085,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Useful energy demand,Domestic hot water [kWh/m² year],,0,4.67502697170379,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space heating [kWh/m² year],,0,103.179515925511,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Space cooling [kWh/m² year],,0,29.9035234763831,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Final energy consumption,Domestic hot water [kWh/m² year],,0,6.70467153581256,kWh/m²/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space heating+Domestic hot water [TWh/year],,0,10.7539137719785,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total useful energy demand,Space cooling [TWh/year],,0,3.73339807036996,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space heating+Domestic hot water [TWh/year],,0,14.1808318637915,TWh/year,Own calculations,,,, +EU28,eu28,Service sector,Other non-residential buildings,Other non-residential buildings,2000 - 2010,ENERGY,Total final energy consumption,Space cooling [TWh/year],,0,1.24168039296422,TWh/year,Own calculations,,,, diff --git a/data/retro/electricity_taxes_eu.csv b/data/retro/electricity_taxes_eu.csv new file mode 100644 index 00000000..15a13fc2 --- /dev/null +++ b/data/retro/electricity_taxes_eu.csv @@ -0,0 +1,164 @@ +Electricity prices for household consumers - bi-annual data (from 2007 onwards) [nrg_pc_204],,,, +,,,, +Last update,30.10.19,,, +Extracted on,14.11.19,,, +Source of data,Eurostat,,, +,,,, +PRODUCT,Electrical energy,,, +CONSOM,Band DC : 2 500 kWh < Consumption < 5 000 kWh,,, +UNIT,Kilowatt-hour,,, +TIME,2018S1,,, +,,,, +CURRENCY,Euro,Euro,Euro, +GEO/TAX,Excluding taxes and levies,Excluding VAT and other recoverable taxes and levies,All taxes and levies included,% cost without taxes +European Union - 28 countries,0.1285,0.1756,0.2052,0.626218323586745 +"Euro area (EA11-2000, EA12-2006, EA13-2007, EA15-2008, EA16-2010, EA17-2013, EA18-2014, EA19)",0.1331,0.1855,0.2188,0.608318098720293 +Belgium,0.1903,0.2279,0.2733,0.696304427369191 +Bulgaria,0.0816,0.0816,0.0979,0.833503575076609 +Czech Republic,0.1286,0.1298,0.1573,0.817546090273363 +Denmark,0.1011,0.2501,0.3126,0.32341650671785 +Germany,0.1379,0.2510,0.2987,0.461667224640107 +Estonia,0.0989,0.1123,0.1348,0.733679525222552 +Ireland,0.1846,0.2087,0.2369,0.779231743351625 +Greece,0.1132,0.1482,0.1672,0.677033492822967 +Spain,0.1873,0.1969,0.2383,0.785984053713806 +France,0.1134,0.1492,0.1748,0.648741418764302 +Croatia,0.1020,0.1160,0.1311,0.778032036613272 +Italy,0.1285,0.1873,0.2067,0.621673923560716 +Cyprus,0.1445,0.1606,0.1893,0.763338615953513 +Latvia,0.1035,0.1266,0.1531,0.676028739386022 +Lithuania,0.0771,0.0906,0.1097,0.702825888787603 +Luxembourg,0.1283,0.1547,0.1671,0.767803710353082 +Hungary,0.0885,0.0885,0.1123,0.78806767586821 +Malta,0.1209,0.1224,0.1285,0.940856031128405 +Netherlands,0.1187,0.1410,0.1706,0.6957796014068 +Austria,0.1232,0.1638,0.1966,0.626653102746694 +Poland,0.0906,0.1146,0.1410,0.642553191489362 +Portugal,0.1007,0.1826,0.2246,0.448352626892253 +Romania,0.0990,0.1120,0.1333,0.742685671417854 +Slovenia,0.1108,0.1322,0.1613,0.686918784872908 +Slovakia,0.0942,0.1305,0.1566,0.601532567049808 +Finland,0.1074,0.1300,0.1612,0.666253101736973 +Sweden,0.1202,0.1513,0.1891,0.635642517186674 +United Kingdom,0.1347,0.1797,0.1887,0.713831478537361 +Iceland,0.1222,0.1246,0.1545,0.790938511326861 +Liechtenstein,:,:,:,#VALUE! +Norway,0.1254,0.1434,0.1751,0.716162193032553 +Montenegro,0.0828,0.0844,0.1024,0.80859375 +North Macedonia,0.0662,0.0662,0.0781,0.847631241997439 +Albania,:,:,:,#VALUE! +Serbia,0.0539,0.0587,0.0705,0.764539007092199 +Turkey,0.0727,0.0766,0.0904,0.804203539823009 +Bosnia and Herzegovina,0.0722,0.0738,0.0864,0.835648148148148 +Kosovo (under United Nations Security Council Resolution 1244/99),0.0569,0.0586,0.0633,0.898894154818325 +Moldova,0.1020,0.1020,0.1020,1 +Ukraine,0.0342,0.0342,0.0410,0.834146341463415 +,,,0.157271052631579, +Special value:,,,, +:,not available,,, +,,,, +PRODUCT,Electrical energy,,, +CONSOM,Band DC : 2 500 kWh < Consumption < 5 000 kWh,,, +UNIT,Kilowatt-hour,,, +TIME,2018S2,,, +,,,, +CURRENCY,Euro,Euro,Euro, +GEO/TAX,Excluding taxes and levies,Excluding VAT and other recoverable taxes and levies,All taxes and levies included, +European Union - 28 countries,0.1329,0.1810,0.2113, +"Euro area (EA11-2000, EA12-2006, EA13-2007, EA15-2008, EA16-2010, EA17-2013, EA18-2014, EA19)",0.1376,0.1902,0.2242, +Belgium,0.1998,0.2429,0.2937, +Bulgaria,0.0838,0.0838,0.1005, +Czechia,0.1299,0.1311,0.1586, +Denmark,0.1116,0.2499,0.3123, +Germany (until 1990 former territory of the FRG),0.1378,0.2521,0.3000, +Estonia,0.1048,0.1182,0.1418, +Ireland,0.2006,0.2237,0.2539, +Greece,0.1125,0.1458,0.1646, +Spain,0.1947,0.2047,0.2477, +France,0.1168,0.1537,0.1799, +Croatia,0.1028,0.1169,0.1321, +Italy,0.1416,0.1964,0.2161, +Cyprus,0.1745,0.1850,0.2183, +Latvia,0.1041,0.1249,0.1511, +Lithuania,0.0771,0.0906,0.1097, +Luxembourg,0.1302,0.1566,0.1691, +Hungary,0.0880,0.0880,0.1118, +Malta,0.1229,0.1244,0.1306, +Netherlands,0.1212,0.1420,0.1707, +Austria,0.1265,0.1676,0.2012, +Poland,0.0889,0.1135,0.1396, +Portugal,0.1028,0.1864,0.2293, +Romania,0.0964,0.1107,0.1317, +Slovenia,0.1125,0.1342,0.1638, +Slovakia,0.0849,0.1218,0.1462, +Finland,0.1144,0.1369,0.1698, +Sweden,0.1287,0.1592,0.1990, +United Kingdom,0.1401,0.1927,0.2024, +Iceland,0.1152,0.1175,0.1457, +Liechtenstein,:,:,:, +Norway,0.1382,0.1562,0.1907, +Montenegro,0.0829,0.0848,0.1030, +North Macedonia,0.0667,0.0667,0.0787, +Albania,0.0759,0.0759,0.0910, +Serbia,0.0542,0.0591,0.0709, +Turkey,0.0688,0.0726,0.0857, +Bosnia and Herzegovina,0.0729,0.0744,0.0871, +Kosovo (under United Nations Security Council Resolution 1244/99),0.0579,0.0591,0.0638, +Moldova,0.0960,0.0960,0.1029, +Ukraine,0.0342,0.0342,0.0410, +,,,, +Special value:,,,, +:,not available,,, +,,,, +PRODUCT,Electrical energy,,, +CONSOM,Band DC : 2 500 kWh < Consumption < 5 000 kWh,,, +UNIT,Kilowatt-hour,,, +TIME,2019S1,,, +,,,, +CURRENCY,Euro,Euro,Euro, +GEO/TAX,Excluding taxes and levies,Excluding VAT and other recoverable taxes and levies,All taxes and levies included, +European Union - 28 countries,0.1351,0.1841,0.2147, +"Euro area (EA11-2000, EA12-2006, EA13-2007, EA15-2008, EA16-2010, EA17-2013, EA18-2014, EA19)",0.1396,0.1928,0.2270, +Belgium,0.1965,0.2355,0.2839, +Bulgaria,0.0831,0.0831,0.0997, +Czechia,0.1433,0.1444,0.1748, +Denmark,0.1084,0.2387,0.2984, +Germany (until 1990 former territory of the FRG),0.1473,0.2595,0.3088, +Estonia,0.0982,0.1131,0.1357, +Ireland,0.2027,0.2134,0.2423, +Greece,0.1139,0.1482,0.1650, +Spain,0.1889,0.1986,0.2403, +France,0.1138,0.1508,0.1765, +Croatia,0.1028,0.1169,0.1321, +Italy,0.1432,0.2090,0.2301, +Cyprus,0.1762,0.1867,0.2203, +Latvia,0.1136,0.1347,0.1629, +Lithuania,0.0947,0.1037,0.1255, +Luxembourg,0.1326,0.1666,0.1798, +Hungary,0.0882,0.0882,0.1120, +Malta,0.1228,0.1243,0.1305, +Netherlands,0.1357,0.1708,0.2052, +Austria,0.1316,0.1695,0.2034, +Poland,0.0884,0.1092,0.1343, +Portugal,0.1103,0.1751,0.2154, +Romania,0.0983,0.1141,0.1358, +Slovenia,0.1125,0.1339,0.1634, +Slovakia,0.0962,0.1314,0.1577, +Finland,0.1173,0.1398,0.1734, +Sweden,0.1297,0.1612,0.2015, +United Kingdom,0.1450,0.2021,0.2122, +Iceland,0.1112,0.1134,0.1406, +Liechtenstein,:,:,:, +Norway,0.1360,0.1529,0.1867, +Montenegro,0.0834,0.0850,0.1032, +North Macedonia,:,:,:, +Albania,:,:,:, +Serbia,0.0541,0.0589,0.0706, +Turkey,0.0684,0.0718,0.0847, +Bosnia and Herzegovina,0.0729,0.0746,0.0873, +Kosovo (under United Nations Security Council Resolution 1244/99),0.0537,0.0556,0.0600, +Moldova,0.0936,0.0936,0.0936, +Ukraine,0.0369,0.0369,0.0442, +,,,, +Special value:,,,, +:,not available,,, diff --git a/data/retro/floor_area_missing.csv b/data/retro/floor_area_missing.csv new file mode 100644 index 00000000..fa77b05e --- /dev/null +++ b/data/retro/floor_area_missing.csv @@ -0,0 +1,17 @@ +country,sector,estimated,value,source,,comments,population [in Million], +AL,residential,0,64,p.13 1.6 million m² = 2.5% of total floor area,https://www.buildup.eu/sites/default/files/content/sled_albania_residential_building_eng.pdf,,, +AL,services,0,,,,,, +BA,residential,0,125.89,Tabula,https://episcope.eu/building-typology/country/ba/,strong differences ? other source claims more than 300 Million m²,,https://www.buildup.eu/sites/default/files/content/sled_serbia_building_eng.pdf +BA,services,0,,,,,, +RS,residential,0,72.3,Odyssee(2011),https://odyssee.enerdata.net/database/,,, +RS,services,0,,,,,, +MK,residential,0,,"Worldbank p.7 Skopje 75% residential, 25% commercial",http://documents.albankaldawli.org/curated/ar/838951574180734318/pdf/Project-Information-Document-North-Macedonia-Public-Sector-Energy-Efficiency-Project-P149990.pdf,15 % live in illegal constructed buildings ? not part of the statistics,2.1, +MK,services,0,,,,,, +ME,residential,0,19.625,p.13 0.314 million m² = 1.6% of total floor area,buildup.eu/sites/default/files/content/sled_montenegro_building_eng.pdf,Only 50 % of the floor area is heated p.12,,buildup.eu/sites/default/files/content/sled_montenegro_building_eng.pdf +ME,services,0,,,,,, +CH,residential,0,99.45,Odyssee(2015),,,, +CH,services,1,78.1392857142857,p.8 44%floor area is services,https://bta.climate-kic.org/wp-content/uploads/2018/04/171123-CK-BTA-DEF-BMB_SWITZERLAND_.pdf,,, +NO,residential,0,121.55,Odyssee(2015),,,, +NO,services,0,115.21,Odyssee(2015),,,, +PL,residential,0,1028.41,EU Building Database,,,, +PL,services,0,498.84,EU Building Database,,,, diff --git a/data/retro/retro_cost_germany.csv b/data/retro/retro_cost_germany.csv new file mode 100644 index 00000000..4493c575 --- /dev/null +++ b/data/retro/retro_cost_germany.csv @@ -0,0 +1,7 @@ +component,cost_fix,cost_var,life_time,comment,additional source +wall,70.34,2.36,40,Agora Energiewende p.110, +floor,39.39,1.3,40,Agora Energiewende p.110, +roof,75.61,1.3,40,Agora Energiewende p.110,https://www.baulinks.de/webplugin/2018/1524.php4 +window,nan,nan,35,, +source: p.37 https://www.umweltbundesamt.de/sites/default/files/medien/1410/publikationen/2019-10-29_texte_132-2019_energieaufwand-gebaeudekonzepte.pdf,,,https://www.agora-energiewende.de/en/publications/building-sector-efficiency-a-crucial-component-of-the-energy-transition/,, +,,,p.115,, diff --git a/data/retro/u_values_poland.csv b/data/retro/u_values_poland.csv new file mode 100644 index 00000000..01a6b3f5 --- /dev/null +++ b/data/retro/u_values_poland.csv @@ -0,0 +1,9 @@ +component,Before 1945,1945 - 1969,1970 - 1979,1980 - 1989,1990 - 1999,2000 - 2010,Post 2010,sector +Walls,1.7,1.4,0.9,0.9,0.6,0.4,1.7,residential +Windows,4.6,3.6,2.6,2.6,2.1,2.1,2.1,residential +Roof,0.8,0.7,0.6,0.6,0.6,0.4,0.33,residential +Floor,1.9,1.4,1.2,1.1,0.9,0.6,0.45,residential +Walls,1.3,1.3,1.3,0.8,0.6,0.6,0.6,services +Windows,4.7,3.7,2.6,2.6,2.3,2.1,2.1,services +Roof,1,0.9,0.7,0.5,0.3,0.3,0.3,services +Floor,1.6,1.2,1.2,1.1,1,0.7,0.7,services diff --git a/data/retro/window_assumptions.csv b/data/retro/window_assumptions.csv new file mode 100644 index 00000000..02e836dc --- /dev/null +++ b/data/retro/window_assumptions.csv @@ -0,0 +1,8 @@ +strength,u_value,cost,u_limit,comment +[m],[W/m^2K],EUR/m^2,[W/m^2K], +0.076,1.34,180.08,3.5,Double-glazing +0.197,0.8,225,1.3,Triple-glazing +,,,, +"source: https://www.agora-energiewende.de/en/publications/building-sector-efficiency-a-crucial-component-of-the-energy-transition/ +p.115 +",,,, diff --git a/doc/conf.py b/doc/conf.py index b805803d..af5a2aa8 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -70,9 +70,9 @@ author = u'2019-2020 Tom Brown (KIT), Marta Victoria (Aarhus University), Lisa Z # built documents. # # The short X.Y version. -version = u'0.1' +version = u'0.4' # The full version, including alpha/beta/rc tags. -release = u'0.1.0' +release = u'0.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/data.csv b/doc/data.csv new file mode 100644 index 00000000..c8cb4b1f --- /dev/null +++ b/doc/data.csv @@ -0,0 +1,26 @@ +description,file/folder,licence,source +JRC IDEES database,jrc-idees-2015/,CC BY 4.0,https://ec.europa.eu/jrc/en/potencia/jrc-idees +urban/rural fraction,urban_percent.csv,unknown,unknown +JRC biomass potentials,biomass/,unknown,https://doi.org/10.2790/39014 +EEA emission statistics,eea/,unknown,https://www.eea.europa.eu/data-and-maps/data/national-emissions-reported-to-the-unfccc-and-to-the-eu-greenhouse-gas-monitoring-mechanism-14 +Eurostat Energy Balances,eurostat-energy_balances-*/,Eurostat,https://ec.europa.eu/eurostat/web/energy/data/energy-balances +Swiss energy statistics from Swiss Federal Office of Energy,switzerland-sfoe/,unknown,http://www.bfe.admin.ch/themen/00526/00541/00542/02167/index.html?dossier_id=02169 +BASt emobility statistics,emobility/,unknown,http://www.bast.de/DE/Verkehrstechnik/Fachthemen/v2-verkehrszaehlung/Stundenwerte.html?nn=626916 +timezone mappings,timezone_mappings.csv,CC BY 4.0,Tom Brown +BDEW heating profile,heat_load_profile_BDEW.csv,unknown,https://github.com/oemof/demandlib +heating profiles for Aarhus,heat_load_profile_DK_AdamJensen.csv,unknown,Adam Jensen MA thesis at Aarhus University +George Lavidas wind/wave costs,WindWaveWEC_GLTB.xlsx,unknown,George Lavidas +country codes,Country_codes.csv,CC BY 4.0,Marta Victoria +co2 budgets,co2_budget.csv,CC BY 4.0,https://arxiv.org/abs/2004.11009 +existing heating potentials,existing_infrastructure/existing_heating_raw.csv,unknown,https://ec.europa.eu/energy/studies/mapping-and-analyses-current-and-future-2020-2030-heatingcooling-fuel-deployment_en?redir=1 +IRENA existing VRE capacities,existing_infrastructure/{solar|onwind|offwind}_capcity_IRENA.csv,unknown,https://www.irena.org/Statistics/Download-Data +USGS ammonia production,myb1-2017-nitro.xls,unknown,https://www.usgs.gov/centers/nmic/nitrogen-statistics-and-information +hydrogen salt cavern potentials,hydrogen_salt_cavern_potentials.csv,CC BY 4.0,https://doi.org/10.1016/j.ijhydene.2019.12.161 +hotmaps industrial site database,Industrial_Database.csv,CC BY 4.0,https://gitlab.com/hotmaps/industrial_sites/industrial_sites_Industrial_Database +Hotmaps building stock data,data_building_stock.csv,CC BY 4.0,https://gitlab.com/hotmaps/building-stock +U-values Poland,u_values_poland.csv,unknown,https://data.europa.eu/euodp/de/data/dataset/building-stock-observatory +Floor area missing in hotmaps building stock data,floor_area_missing.csv,unknown,https://data.europa.eu/euodp/de/data/dataset/building-stock-observatory +Comparative level investment,comparative_level_investment.csv,Eurostat,https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Comparative_price_levels_for_investment +Electricity taxes,electricity_taxes_eu.csv,Eurostat,https://appsso.eurostat.ec.europa.eu/nui/show.do?dataset=nrg_pc_204&lang=en +Average surface components,average_surface_components.csv,unknown,http://webtool.building-typology.eu/#bm +Retrofitting thermal envelope costs for Germany,retro_cost_germany.csv,unkown,https://www.iwu.de/forschung/handlungslogiken/kosten-energierelevanter-bau-und-anlagenteile-bei-modernisierung/ diff --git a/doc/index.rst b/doc/index.rst index b8294571..39c8ab04 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -66,42 +66,6 @@ PyPSA-Eur-Sec is designed to be imported into the open toolbox `PyPSA `_ at the `Institute for Automation and Applied Informatics `_ at the `Karlsruhe Institute of Technology `_. The group is funded by the `Helmholtz Association `_ until 2024. Previous versions were developed by the `Renewable Energy Group `_ at `FIAS `_ to carry out simulations for the `CoNDyNet project `_, financed by the `German Federal Ministry for Education and Research (BMBF) `_ as part of the `Stromnetze Research Initiative `_. -Spatial resolution of sectors -============================= - -Not all of the sectors are at the full nodal resolution, and some are -distributed to nodes using heuristics that need to be corrected. Some -networks are copper-plated to reduce computational times. - -For example: - -Electricity network: nodal. - -Electricity demand: nodal, distributed in each country based on -population and GDP. - -Building heating demand: nodal, distributed in each country based on -population. - -Industry demand: nodal, distributed in each country based on -population (will be corrected to real locations of industry, see -github issue). - -Hydrogen network: nodal. - -Methane network: copper-plated for Europe, since future demand is so -low and no bottlenecks are expected. - -Solid biomass: copper-plated until transport costs can be -incorporated. - -CO2: copper-plated (but a transport and storage cost is added for -sequestered CO2). - -Liquid hydrocarbons: copper-plated since transport costs are low. - - - Documentation ============= @@ -116,6 +80,20 @@ Documentation installation +**Implementation details** + +* :doc:`spatial_resolution` +* :doc:`supply_demand` + +.. toctree:: + :hidden: + :maxdepth: 1 + :caption: Implementation details + + spatial_resolution + supply_demand + + **Foresight options** * :doc:`overnight` diff --git a/doc/installation.rst b/doc/installation.rst index 7b2c8771..997f5221 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -18,13 +18,17 @@ its dependencies. Clone the repository: projects % git clone git@github.com:PyPSA/pypsa-eur.git -then download and unpack all the PyPSA-Eur data files. +then download and unpack all the PyPSA-Eur data files by running the following snakemake rule: + +.. code:: bash + + projects/pypsa-eur % snakemake -j 1 retrieve_databundle Clone technology-data repository ================================ -Create a parallel directory for the technology costs and other assumptions: +Next install the technology assumptions database `technology-data `_ by creating a parallel directory: .. code:: bash @@ -34,7 +38,7 @@ Create a parallel directory for the technology costs and other assumptions: Clone PyPSA-Eur-Sec repository ============================== -Create a parallel directory for PyPSA-Eur-Sec with: +Create a parallel directory for `PyPSA-Eur-Sec `_ with: .. code:: bash @@ -54,19 +58,26 @@ atlite version 0.0.2. Data requirements ================= -The data requirements include the JRC-IDEES-2015 database, JRC biomass -potentials, EEA emission statistics, Eurostat Energy Balances, urban -district heating potentials, emobility statistics, timezone mappings -and heating profiles. +Small data files are included directly in the git repository, while +larger ones are archived in a data bundle. The data bundle's size is +around 640 MB. -The data bundle is about 640 MB. - -To download and extract it on the command line: +To download and extract the data bundle on the command line: .. code:: bash - projects/pypsa-eur-sec/data % wget "https://nworbmot.org/pypsa-eur-sec-data-bundle-190719.tar.gz" - projects/pypsa-eur-sec/data % tar xvzf pypsa-eur-sec-data-bundle-190719.tar.gz + projects/pypsa-eur-sec/data % wget "https://nworbmot.org/pypsa-eur-sec-data-bundle-201012.tar.gz" + projects/pypsa-eur-sec/data % tar xvzf pypsa-eur-sec-data-bundle-201012.tar.gz + + +The data licences and sources are given in the following table. + + +.. csv-table:: + :header-rows: 1 + :file: data.csv + + Set up the default configuration ================================ diff --git a/doc/myopic.rst b/doc/myopic.rst index c20e06a6..6faaaeff 100644 --- a/doc/myopic.rst +++ b/doc/myopic.rst @@ -12,17 +12,19 @@ The current code applies the myopic approach to generators, storage technologies The transport sector and industry are not affected by the myopic code. In essence, the electrification of road and rail transport, the percentage of electric vehicles that allow demand-side management and vehicle-to-grid services, and the transformation in the different industrial subsectors do not evolve with time. They are kept fixed at the values specified in the configuration file. Including the transport sector and industry in the myopic code is planned for the near future. - +See also other `outstanding issues `_. Configuration ================= -PyPSA-Eur-Sec has several configuration options which are collected in a config.yaml file located in the root directory. For myopic optimization, users should copy the provided myopic configuration ``config.myopic.yaml`` and make their own modifications and assumptions in the user-specific configuration file (``config.yaml``). +PyPSA-Eur-Sec has several configuration options which are collected in a config.yaml file located in the root directory. For myopic optimization, users should copy the provided default configuration ``config.default.yaml`` and make their own modifications and assumptions in the user-specific configuration file (``config.yaml``). The following options included in the config.yaml file are relevant for the myopic code. To activate the myopic option select ``foresight: 'myopic'`` in ``config.yaml``. +To set the investment years which are sequentially simulated for the myopic investment planning, select for example ``planning_horizons : [2020, 2030, 2040, 2050]`` in ``config.yaml``. + **existing capacities** diff --git a/doc/overnight.rst b/doc/overnight.rst index a751be9d..deb77625 100644 --- a/doc/overnight.rst +++ b/doc/overnight.rst @@ -7,3 +7,5 @@ Overnight (greenfield) scenarios The default is to calculate a rebuilding of the energy system to meet demand, a so-called overnight or greenfield approach. For this, use ``foresight : 'overnight'`` in ``config.yaml``, like the example in ``config.default.yaml``. + +In this case, the ``planning_horizons : [2030]`` scenario parameter can be set to use the year from which cost and other technology assumptions are set (forecasts for 2030 in this case). diff --git a/doc/release_notes.rst b/doc/release_notes.rst index cf238cc8..9d9acc4c 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -2,13 +2,74 @@ Release Notes ########################################## -PyPSA-Eur-Sec 0.2.0 (TBD) -================================== -* Link to DEA cost database in another GitHub repository. +PyPSA-Eur-Sec 0.4.0 (11th December 2020) +========================================= -* Myopic investment planning from Aarhus University. +This release includes a more accurate nodal disaggregation of industry demand within each country, fixes to CHP and CCS representations, as well as changes to some configuration settings. +It has been released to coincide with `PyPSA-Eur `_ Version 0.3.0 and `Technology Data `_ Version 0.2.0, and is known to work with these releases. + +New features: + +* The `Hotmaps Industrial Database `_ is used to disaggregate the industrial demand spatially to the nodes inside each country (previously it was distributed by population density). +* Electricity demand from industry is now separated from the regular electricity demand and distributed according to the industry demand. Only the remaining regular electricity demand for households and services is distributed according to GDP and population. +* A cost database for the retrofitting of the thermal envelope of residential and services buildings has been integrated, as well as endogenous optimisation of the level of retrofitting. This is described in the paper `Mitigating heat demand peaks in buildings in a highly renewable European energy system `_. Retrofitting can be activated both exogenously and endogenously from the ``config.yaml``. +* The biomass and gas combined heat and power (CHP) parameters ``c_v`` and ``c_b`` were read in assuming they were extraction plants rather than back pressure plants. The data is now corrected in `Technology Data `_ Version 0.2.0 to the correct DEA back pressure assumptions and they are now implemented as single links with a fixed ratio of electricity to heat output (even as extraction plants, they were always sitting on the backpressure line in simulations, so there was no point in modelling the full heat-electricity feasibility polygon). The old assumptions underestimated the heat output. +* The Danish Energy Agency released `new assumptions for carbon capture `_ in October 2020, which have now been incorporated in PyPSA-Eur-Sec, including direct air capture (DAC) and post-combustion capture on CHPs, cement kilns and other industrial facilities. The electricity and heat demand for DAC is modelled for each node (with heat coming from district heating), but currently the electricity and heat demand for industrial capture is not modelled very cleanly (for process heat, 10% of the energy is assumed to go to carbon capture) - a new issue will be opened on this. +* Land transport is separated by energy carrier (fossil, hydrogen fuel cell electric vehicle, and electric vehicle), but still needs to be separated into heavy and light vehicles (the data is there, just not the code yet). +* For assumptions that change with the investment year, there is a new time-dependent format in the ``config.yaml`` using a dictionary with keys for each year. Implemented examples include the CO2 budget, exogenous retrofitting share and land transport energy carrier; more parameters will be dynamised like this in future. +* Some assumptions have been moved out of the code and into the ``config.yaml``, including the carbon sequestration potential and cost, the heat pump sink temperature, reductions in demand for high value chemicals, and some BEV DSM parameters and transport efficiencies. +* Documentation on :doc:`supply_demand` options has been added. + +Many thanks to Fraunhofer ISI for opening the hotmaps database and to Lisa Zeyen (KIT) for implementing the building retrofitting. + + +PyPSA-Eur-Sec 0.3.0 (27th September 2020) +========================================= + +This releases focuses on improvements to industry demand and the generation of intermediate files for demand for basic materials. There are still inconsistencies with CCS and waste management that need to be improved. + +It is known to work with PyPSA-Eur v0.1.0 (commit bb3477cd69), PyPSA v0.17.1 and technology-data v0.1.0. Please note that the data bundle has also been updated. + + +New features: + +* In previous version of PyPSA-Eur-Sec the energy demand for industry was calculated directly for each location. Now, instead, the production of each material (steel, cement, aluminium) at each location is calculated as an intermediate data file, before the energy demand is calculated from it. This allows us in future to have competing industrial processes for supplying the same material demand. +* The script ``build_industrial_production_per_country_tomorrow.py`` determines the future industrial production of materials based on today's levels as well as assumed recycling and demand change measures. +* The energy demand for each industry sector and each location in 2015 is also calculated, so that it can be later incorporated in the pathway optimization. +* Ammonia production data is taken from the USGS and deducted from JRC-IDEES's "basic chemicals" so that it ammonia can be handled separately from the others (olefins, aromatics and chlorine). +* Solid biomass is no longer allowed to be used for process heat in cement and basic chemicals, since the wastes and residues cannot be guaranteed to reach the high temperatures required. Instead, solid biomass is used in the paper and pulp as well as food, beverages and tobacco industries, where required temperatures are lower (see `DOI:10.1002/er.3436 `_ and `DOI:10.1007/s12053-017-9571-y `_). +* National installable potentials for salt caverns are now applied. +* When electricity distribution grids are activated, new industry electricity demand, resistive heaters and micro-CHPs are now connected to the lower voltage levels. +* Gas distribution grid costs are included for gas boilers and micro-CHPs. +* Installable potentials for rooftop PV are included with an assumption of 1 kWp per person. +* Some intermediate files produced by scripts have been moved from the folder ``data`` to the folder ``resources``. Now ``data`` only includes input data, while ``resources`` only includes intermediate files necessary for building the network models. Please note that the data bundle has also been updated. +* Biomass potentials for different years and scenarios from the JRC are generated in an intermediate file, so that a selection can be made more explicitly by specifying the biomass types from the ``config.yaml``. + + +PyPSA-Eur-Sec 0.2.0 (21st August 2020) +====================================== + +This release introduces pathway optimization over many years (e.g. 2020, 2030, 2040, 2050) with myopic foresight, as well as outsourcing the technology assumptions to the `technology-data `_ repository. + +It is known to work with PyPSA-Eur v0.1.0 (commit bb3477cd69), PyPSA v0.17.1 and technology-data v0.1.0. + +New features: + +* Option for pathway optimization with myopic foresight, based on the paper `Early decarbonisation of the European Energy system pays off (2020) `_. Investments are optimized sequentially for multiple years (e.g. 2020, 2030, 2040, 2050) taking account of existing assets built in previous years and their lifetimes. The script uses data on the existing assets for electricity and building heating technologies, but there are no assumptions yet for existing transport and industry (if you include these, the model will greenfield them). There are also some `outstanding issues `_ on e.g. the distribution of existing wind, solar and heating technologies within each country. To use myopic foresight, set ``foresight : 'myopic'`` in the ``config.yaml`` instead of the default ``foresight : 'overnight'``. An example configuration can be found in ``config.myopic.yaml``. More details on the implementation can be found in :doc:`myopic`. + +* Technology assumptions (costs, efficiencies, etc.) are no longer stored in the repository. Instead, you have to install the `technology-data `_ database in a parallel directory. These assumptions are largely based on the `Danish Energy Agency Technology Data `_. More details on the installation can be found in :doc:`installation`. + +* Logs and benchmarks are now stored with the other model outputs in ``results/run-name/``. + +* All buses now have a ``location`` attribute, e.g. bus ``DE0 3 urban central heat`` has a ``location`` of ``DE0 3``. + +* All assets have a ``lifetime`` attribute (integer in years). For the myopic foresight, a ``build_year`` attribute is also stored. + +* Costs for solar and onshore and offshore wind are recalculated by PyPSA-Eur-Sec based on the investment year, including the AC or DC connection costs for offshore wind. + +Many thanks to Marta Victoria for implementing the myopic foresight, and Marta Victoria, Kun Zhu and Lisa Zeyen for developing the technology assumptions database. PyPSA-Eur-Sec 0.1.0 (8th July 2020) @@ -50,14 +111,20 @@ the additional sectors. Release Process =============== -* Checkout a new release branch ``git checkout -b release-v0.x.x``. - * Finalise release notes at ``doc/release_notes.rst``. * Update version number in ``doc/conf.py`` and ``*config.*.yaml``. +* Make a ``git commit``. + * Tag a release by running ``git tag v0.x.x``, ``git push``, ``git push --tags``. Include release notes in the tag message. * Make a `GitHub release `_, which automatically triggers archiving by `zenodo `_. * Send announcement on the `PyPSA mailing list `_. + +To make a new release of the data bundle, make an archive of the files in ``data`` which are not already included in the git repository: + +.. code:: bash + + data % tar pczf pypsa-eur-sec-data-bundle-date.tar.gz eea switzerland-sfoe biomass eurostat-energy_balances-* jrc-idees-2015 emobility urban_percent.csv timezone_mappings.csv heat_load_profile_DK_AdamJensen.csv WindWaveWEC_GLTB.xlsx myb1-2017-nitro.xls Industrial_Database.csv diff --git a/doc/spatial_resolution.rst b/doc/spatial_resolution.rst new file mode 100644 index 00000000..1be9f3ad --- /dev/null +++ b/doc/spatial_resolution.rst @@ -0,0 +1,54 @@ +.. _spatial_resolution: + +########################################## +Spatial resolution +########################################## + +The default nodal resolution of the model follows the electricity +generation and transmission model `PyPSA-Eur +`_, which clusters down the +electricity transmission substations in each European country based on +the k-means algorithm. This gives nodes which correspond to major load +and generation centres (typically cities). + +The total number of nodes for Europe is set in the ``config.yaml`` file +under ``clusters``. The number of nodes can vary between 37, the number +of independent countries / synchronous areas, and several +hundred. With 200-300 nodes the model needs 100-150 GB RAM to solve +with a commerical solver like Gurobi. + + +Not all of the sectors are at the full nodal resolution, and some +demand for some sectors is distributed to nodes using heuristics that +need to be corrected. Some networks are copper-plated to reduce +computational times. + +For example: + +Electricity network: nodal. + +Electricity residential and commercial demand: nodal, distributed in +each country based on population and GDP. + +Electricity demand in industry: based on the location of industrial +facilities from `HotMaps database `_. + +Building heating demand: nodal, distributed in each country based on +population. + +Industry demand: nodal, distributed in each country based on +locations of industry from `HotMaps database `_. + +Hydrogen network: nodal. + +Methane network: single node for Europe, since future demand is so +low and no bottlenecks are expected. + +Solid biomass: single node for Europe, until transport costs can be +incorporated. + +CO2: single node for Europe, but a transport and storage cost is added for +sequestered CO2. + +Liquid hydrocarbons: single node for Europe, since transport costs for +liquids are low. diff --git a/doc/supply_demand.rst b/doc/supply_demand.rst new file mode 100644 index 00000000..823bdd93 --- /dev/null +++ b/doc/supply_demand.rst @@ -0,0 +1,193 @@ +.. _supply_demand: + +########################################## +Supply and demand +########################################## + +An initial orientation to the supply and demand options in the model +PyPSA-Eur-Sec can be found in the description of the model +PyPSA-Eur-Sec-30 in the paper `Synergies of sector coupling and +transmission reinforcement in a cost-optimised, highly renewable +European energy system `_ (2018). +The latest version of PyPSA-Eur-Sec differs by including biomass, +industry, industrial feedstocks, aviation, shipping, better carbon +management, carbon capture and usage/sequestration, and gas networks. + +The basic supply (left column) and demand (right column) options in the model are described in this figure: + +.. image:: ../graphics/multisector_figure.png + + + +Electricity supply and demand +============================= + +Electricity supply and demand follows the electricity generation and +transmission model `PyPSA-Eur `_, +except that hydrogen storage is integrated into the hydrogen supply, +demand and network, and PyPSA-Eur-Sec includes CHPs. + +Unlike PyPSA-Eur, PyPSA-Eur-Sec does not distribution electricity demand for industry according to population and GDP, but uses the +geographical data from the `Hotmaps Industrial Database +`_. + +Also unlike PyPSA-Eur, PyPSA-Eur-Sec subtracts existing electrified heating from the existing electricity demand, so that power-to-heat can be optimised separately. + +The remaining electricity demand for households and services is distributed inside each country proportional to GDP and population. + + +Heat demand +============================= + +Heat demand is split into: + +* ``urban central``: large-scale district heating networks in urban areas with dense heat demand +* ``residential/services urban decentral``: heating for individual buildings in urban areas +* ``residential/services rural``: heating for individual buildings in rural areas + + +Heat supply +======================= + +Oil and gas boilers +-------------------- + +Heat pumps +------------- + +Either air-to-water or ground-to-water heat pumps are implemented. + +They have coefficient of performance (COP) based on either the +external air or the soil hourly temperature. + +Ground-source heat pumps are only allowed in rural areas because of +space constraints. + +Only air-source heat pumps are allowed in urban areas. This is a +conservative assumption, since there are many possible sources of +low-temperature heat that could be tapped in cities (waste water, +rivers, lakes, seas, etc.). + +Resistive heaters +-------------------- + + +Large Combined Heat and Power (CHP) plants +-------------------------------------------- + +A good summary of CHP options that can be implemented in PyPSA can be found in the paper `Cost sensitivity of optimal sector-coupled district heating production systems `_. + +PyPSA-Eur-Sec includes CHP plants fuelled by methane, hydrogen and solid biomass from waste and residues. + +Hydrogen CHPs are fuel cells. + +Methane and biomass CHPs are based on back pressure plants operating with a fixed ratio of electricity to heat output. The methane CHP is modelled on the Danish Energy Agency (DEA) "Gas turbine simple cycle (large)" while the solid biomass CHP is based on the DEA's "09b Wood Pellets Medium". + +The efficiencies of each are given on the back pressure line, where the back pressure coefficient ``c_b`` is the electricity output divided by the heat output. The plants are not allowed to deviate from the back pressure line and are implement as ``Link`` objects with a fixed ratio of heat to electricity output. + + +NB: The old PyPSA-Eur-Sec-30 model assumed an extraction plant (like the DEA coal CHP) for gas which has flexible production of heat and electricity within the feasibility diagram of Figure 4 in the `Synergies paper `_. We have switched to the DEA back pressure plants since these are more common for smaller plants for biomass, and because the extraction plants were on the back pressure line for 99.5% of the time anyway. The plants were all changed to back pressure in PyPSA-Eur-Sec v0.4.0. + + +Micro-CHP for individual buildings +----------------------------------- + +Optional. + +Waste heat from Fuel Cells, Methanation and Fischer-Tropsch plants +------------------------------------------------------------------- + + +Solar thermal collectors +------------------------- + +Thermal energy storage using hot water tanks +--------------------------------------------- + +Small for decentral applications. + +Big pit storage for district heating. + + +Hydrogen demand +================== + +Stationary fuel cell CHP. + +Transport applications. + +Industry (ammonia, precursor to hydrocarbons for chemicals and iron/steel). + + +Hydrogen supply +================= + +SMR, SMR+CCS, electrolysers. + + +Methane demand +================== + +Can be used in boilers, in CHPs, in industry for high temperature heat, in OCGT. + +Not used in transport because of engine slippage. + +Methane supply +================= + +Fossil, biogas, Sabatier (hydrogen to methane), HELMETH (directly power to methane with efficient heat integration). + + +Solid biomass demand +===================== + +Solid biomass provides process heat up to 500 Celsius in industry, as well as feeding CHP plants in district heating networks. + +Solid biomass supply +===================== + +Only wastes and residues from the JRC biomass dataset. + + +Oil product demand +===================== + +Transport fuels and naphtha as a feedstock for the chemicals industry. + +Oil product supply +====================== + +Fossil or Fischer-Tropsch. + + +Industry demand +================ + +Based on materials demand from JRC-IDEES and other sources such as the USGS for ammonia. + +Industry is split into many sectors, including iron and steel, ammonia, other basic chemicals, cement, non-metalic minerals, alumuninium, other non-ferrous metals, pulp, paper and printing, food, beverages and tobacco, and other more minor sectors. + +Inside each country the industrial demand is distributed using the `Hotmaps Industrial Database `_. + + +Industry supply +================ + +Process switching (e.g. from blast furnaces to direct reduction and electric arc furnaces for steel) is defined exogenously. + +Fuel switching for process heat is mostly also done exogenously. + +Solid biomass is used for up to 500 Celsius, mostly in paper and pulp and food and beverages. + +Higher temperatures are met with methane. + + +Carbon dioxide capture, usage and sequestration (CCU/S) +========================================================= + +Carbon dioxide can be captured from industry process emissions, +emissions related to industry process heat, combined heat and power +plants, and directly from the air (DAC). + +Carbon dioxide can be used as an input for methanation and +Fischer-Tropsch fuels, or it can be sequestered underground. diff --git a/scripts/add_brownfield.py b/scripts/add_brownfield.py index 43d03fbe..a0b8d97b 100644 --- a/scripts/add_brownfield.py +++ b/scripts/add_brownfield.py @@ -98,8 +98,8 @@ if __name__ == "__main__": output=['pypsa-eur-sec/results/test/prenetworks_brownfield/{network}_s{simpl}_{clusters}_lv{lv}__{sector_opts}_{planning_horizons}.nc'] ) import yaml - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) print(snakemake.input.network_p) logging.basicConfig(level=snakemake.config['logging_level']) diff --git a/scripts/add_existing_baseyear.py b/scripts/add_existing_baseyear.py index 727037a1..852c5bb0 100644 --- a/scripts/add_existing_baseyear.py +++ b/scripts/add_existing_baseyear.py @@ -170,10 +170,8 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas df_agg.Fueltype = df_agg.Fueltype.map(rename_fuel) #assign clustered bus - busmap_s = pd.read_hdf(snakemake.input.clustermaps, - key="/busmap_s") - busmap = pd.read_hdf(snakemake.input.clustermaps, - key="/busmap") + busmap_s = pd.read_csv(snakemake.input.busmap_s, index_col=0).squeeze() + busmap = pd.read_csv(snakemake.input.busmap, index_col=0).squeeze() clustermaps = busmap_s.map(busmap) clustermaps.index = clustermaps.index.astype(int) @@ -416,15 +414,16 @@ if __name__ == "__main__": planning_horizons='2020'), input=dict(network='pypsa-eur-sec/results/test/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}__{sector_opts}_{co2_budget_name}_{planning_horizons}.nc', powerplants='pypsa-eur/resources/powerplants.csv', - clustermaps='pypsa-eur/resources/clustermaps_{network}_s{simpl}_{clusters}.h5', + busmap_s='pypsa-eur/resources/busmap_{network}_s{simpl}.csv', + busmap='pypsa-eur/resources/busmap_{network}_s{simpl}_{clusters}.csv', costs='pypsa-eur-sec/data/costs/costs_{planning_horizons}.csv', cop_air_total="pypsa-eur-sec/resources/cop_air_total_{network}_s{simpl}_{clusters}.nc", cop_soil_total="pypsa-eur-sec/resources/cop_soil_total_{network}_s{simpl}_{clusters}.nc"), output=['pypsa-eur-sec/results/test/prenetworks_brownfield/{network}_s{simpl}_{clusters}_lv{lv}__{sector_opts}_{planning_horizons}.nc'], ) import yaml - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) logging.basicConfig(level=snakemake.config['logging_level']) @@ -443,7 +442,8 @@ if __name__ == "__main__": costs = prepare_costs(snakemake.input.costs, snakemake.config['costs']['USD2013_to_EUR2013'], snakemake.config['costs']['discountrate'], - Nyears) + Nyears, + snakemake.config['costs']['lifetime']) grouping_years=snakemake.config['existing_capacities']['grouping_years'] add_power_capacities_installed_before_baseyear(n, grouping_years, costs, baseyear) diff --git a/scripts/build_ammonia_production.py b/scripts/build_ammonia_production.py new file mode 100644 index 00000000..9f2c2690 --- /dev/null +++ b/scripts/build_ammonia_production.py @@ -0,0 +1,45 @@ + + +import pandas as pd + +ammonia = pd.read_excel(snakemake.input.usgs, + sheet_name="T12", + skiprows=5, + header=0, + index_col=0, + skipfooter=19) + +rename = {"Austriae" : "AT", + "Bulgaria" : "BG", + "Belgiume" : "BE", + "Croatia" : "HR", + "Czechia" : "CZ", + "Estonia" : "EE", + "Finland" : "FI", + "France" : "FR", + "Germany" : "DE", + "Greece" : "GR", + "Hungarye" : "HU", + "Italye" : "IT", + "Lithuania" : "LT", + "Netherlands" : "NL", + "Norwaye" : "NO", + "Poland" : "PL", + "Romania" : "RO", + "Serbia" : "RS", + "Slovakia" : "SK", + "Spain" : "ES", + "Switzerland" : "CH", + "United Kingdom" : "GB", +} + +ammonia = ammonia.rename(rename) + +ammonia = ammonia.loc[rename.values(),[str(i) for i in range(2013,2018)]].astype(float) + +#convert from ktonN to ktonNH3 +ammonia = ammonia*17/14 + +ammonia.index.name = "ktonNH3/a" + +ammonia.to_csv(snakemake.output.ammonia_production) diff --git a/scripts/build_biomass_potentials.py b/scripts/build_biomass_potentials.py index db478778..c959680f 100644 --- a/scripts/build_biomass_potentials.py +++ b/scripts/build_biomass_potentials.py @@ -19,29 +19,28 @@ def build_biomass_potentials(): for i in range(36): df_dict[df.iloc[i*16,1]] = df.iloc[1+i*16:(i+1)*16].astype(float) - df_new = pd.concat(df_dict) + #convert from PJ to MWh + df_new = pd.concat(df_dict).rename({"UK" : "GB", "BH" : "BA"})/3.6*1e6 + df_new.index.name = "MWh/a" + df_new.to_csv(snakemake.output.biomass_potentials_all) # solid biomass includes: Primary agricultural residues (MINBIOAGRW1), - # Forestry energy residue (MINBIOFRSF1), + # Forestry energy residue (MINBIOFRSF1), # Secondary forestry residues (MINBIOWOOW1), # Secondary Forestry residues – sawdust (MINBIOWOO1a)', - # Forestry residues from landscape care biomass (MINBIOFRSF1a), + # Forestry residues from landscape care biomass (MINBIOFRSF1a), # Municipal waste (MINBIOMUN1)', - + # biogas includes : Manure biomass potential (MINBIOGAS1), # Sludge biomass (MINBIOSLU1) - - us_type = pd.Series(index=df_new.columns) - us_type.iloc[0:7] = "not included" - us_type.iloc[7:8] = "biogas" - us_type.iloc[8:9] = "solid biomass" - us_type.iloc[9:11] = "not included" - us_type.iloc[11:16] = "solid biomass" - us_type.iloc[16:17] = "biogas" + us_type = pd.Series("", df_new.columns) - #convert from PJ to MWh - biomass_potentials = df_new.loc[idx[:,snakemake.config['biomass']['year'],snakemake.config['biomass']['scenario']],:].groupby(us_type,axis=1).sum().groupby(level=0).sum().rename({"UK" : "GB", "BH" : "BA"})/3.6*1e6 + for k,v in snakemake.config['biomass']['classes'].items(): + us_type.loc[v] = k + + biomass_potentials = df_new.swaplevel(0,2).loc[snakemake.config['biomass']['scenario'],snakemake.config['biomass']['year']].groupby(us_type,axis=1).sum() + biomass_potentials.index.name = "MWh/a" biomass_potentials.to_csv(snakemake.output.biomass_potentials) @@ -58,7 +57,7 @@ if __name__ == "__main__": snakemake.input['jrc_potentials'] = "data/biomass/JRC Biomass Potentials.xlsx" snakemake.output = Dict() snakemake.output['biomass_potentials'] = 'data/biomass_potentials.csv' - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) build_biomass_potentials() diff --git a/scripts/build_cop_profiles.py b/scripts/build_cop_profiles.py index d469489c..fddd86f6 100644 --- a/scripts/build_cop_profiles.py +++ b/scripts/build_cop_profiles.py @@ -9,16 +9,13 @@ import xarray as xr cop_f = {"air" : lambda d_t: 6.81 -0.121*d_t + 0.000630*d_t**2, "soil" : lambda d_t: 8.77 -0.150*d_t + 0.000734*d_t**2} -sink_T = 55. # Based on DTU / large area radiators - - for area in ["total", "urban", "rural"]: for source in ["air", "soil"]: source_T = xr.open_dataarray(snakemake.input["temp_{}_{}".format(source,area)]) - delta_T = sink_T - source_T + delta_T = snakemake.config['sector']['heat_pump_sink_T'] - source_T cop = cop_f[source](delta_T) diff --git a/scripts/build_energy_totals.py b/scripts/build_energy_totals.py index 1682ac40..0cfa709b 100644 --- a/scripts/build_energy_totals.py +++ b/scripts/build_energy_totals.py @@ -378,12 +378,12 @@ def build_energy_totals(): clean_df.loc[missing,"total aviation passenger"] = clean_df.loc[missing,["total domestic aviation passenger","total international aviation passenger"]].sum(axis=1) clean_df.loc[missing,"total aviation freight"] = clean_df.loc[missing,["total domestic aviation freight","total international aviation freight"]].sum(axis=1) + if "BA" in clean_df.index: + #fix missing data for BA (services and road energy data) + missing = (clean_df.loc["BA"] == 0.) - #fix missing data for BA (services and road energy data) - missing = (clean_df.loc["BA"] == 0.) - - #add back in proportional to RS with ratio of total residential demand - clean_df.loc["BA",missing] = clean_df.loc["BA","total residential"]/clean_df.loc["RS","total residential"]*clean_df.loc["RS",missing] + #add back in proportional to RS with ratio of total residential demand + clean_df.loc["BA",missing] = clean_df.loc["BA","total residential"]/clean_df.loc["RS","total residential"]*clean_df.loc["RS",missing] clean_df.to_csv(snakemake.output.energy_name) diff --git a/scripts/build_industrial_demand.py b/scripts/build_industrial_demand.py index fce7b6ad..829125f7 100644 --- a/scripts/build_industrial_demand.py +++ b/scripts/build_industrial_demand.py @@ -7,7 +7,7 @@ def build_industrial_demand(): pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout,index_col=0) pop_layout["ct"] = pop_layout.index.str[:2] ct_total = pop_layout.total.groupby(pop_layout["ct"]).sum() - pop_layout["ct_total"] = pop_layout["ct"].map(ct_total.get) + pop_layout["ct_total"] = pop_layout["ct"].map(ct_total) pop_layout["fraction"] = pop_layout["total"]/pop_layout["ct_total"] industrial_demand_per_country = pd.read_csv(snakemake.input.industrial_demand_per_country,index_col=0) @@ -33,7 +33,7 @@ if __name__ == "__main__": snakemake.input['industrial_demand_per_country']="resources/industrial_demand_per_country.csv" snakemake.output = Dict() snakemake.output['industrial_demand'] = "resources/industrial_demand_elec_s_128.csv" - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) build_industrial_demand() diff --git a/scripts/build_industrial_distribution_key.py b/scripts/build_industrial_distribution_key.py new file mode 100644 index 00000000..c5d55a2c --- /dev/null +++ b/scripts/build_industrial_distribution_key.py @@ -0,0 +1,153 @@ + +import pypsa +import pandas as pd +import geopandas as gpd +from shapely import wkt, prepared +from scipy.spatial import cKDTree as KDTree + + +def prepare_hotmaps_database(): + + df = pd.read_csv(snakemake.input.hotmaps_industrial_database, + sep=";", + index_col=0) + + #remove those sites without valid geometries + df.drop(df.index[df.geom.isna()], + inplace=True) + + #parse geometry + #https://geopandas.org/gallery/create_geopandas_from_pandas.html?highlight=parse#from-wkt-format + df["Coordinates"] = df.geom.apply(lambda x : wkt.loads(x[x.find(";POINT")+1:])) + + gdf = gpd.GeoDataFrame(df, geometry='Coordinates') + + europe_shape = gpd.read_file(snakemake.input.europe_shape).loc[0, 'geometry'] + europe_shape_prepped = prepared.prep(europe_shape) + not_in_europe = gdf.index[~gdf.geometry.apply(europe_shape_prepped.contains)] + print("Removing the following industrial facilities since they are not in European area:") + print(gdf.loc[not_in_europe]) + gdf.drop(not_in_europe, + inplace=True) + + country_to_code = { + 'Belgium' : 'BE', + 'Bulgaria' : 'BG', + 'Czech Republic' : 'CZ', + 'Denmark' : 'DK', + 'Germany' : 'DE', + 'Estonia' : 'EE', + 'Ireland' : 'IE', + 'Greece' : 'GR', + 'Spain' : 'ES', + 'France' : 'FR', + 'Croatia' : 'HR', + 'Italy' : 'IT', + 'Cyprus' : 'CY', + 'Latvia' : 'LV', + 'Lithuania' : 'LT', + 'Luxembourg' : 'LU', + 'Hungary' : 'HU', + 'Malta' : 'MA', + 'Netherland' : 'NL', + 'Austria' : 'AT', + 'Poland' : 'PL', + 'Portugal' : 'PT', + 'Romania' : 'RO', + 'Slovenia' : 'SI', + 'Slovakia' : 'SK', + 'Finland' : 'FI', + 'Sweden' : 'SE', + 'United Kingdom' : 'GB', + 'Iceland' : 'IS', + 'Norway' : 'NO', + 'Montenegro' : 'ME', + 'FYR of Macedonia' : 'MK', + 'Albania' : 'AL', + 'Serbia' : 'RS', + 'Turkey' : 'TU', + 'Bosnia and Herzegovina' : 'BA', + 'Switzerland' : 'CH', + 'Liechtenstein' : 'AT', + } + gdf["country_code"] = gdf.Country.map(country_to_code) + + if gdf["country_code"].isna().any(): + print("Warning, some countries not assigned an ISO code") + + gdf["x"] = gdf.geometry.x + gdf["y"] = gdf.geometry.y + + return gdf + + +def assign_buses(gdf): + + gdf["bus"] = "" + + for c in n.buses.country.unique(): + buses_i = n.buses.index[n.buses.country == c] + kdtree = KDTree(n.buses.loc[buses_i, ['x','y']].values) + + industry_i = gdf.index[(gdf.country_code == c)] + + if industry_i.empty: + print("Skipping country with no industry:",c) + else: + tree_i = kdtree.query(gdf.loc[industry_i, ['x','y']].values)[1] + gdf.loc[industry_i, 'bus'] = buses_i[tree_i] + + if (gdf.bus == "").any(): + print("Some industrial facilities have empty buses") + if gdf.bus.isna().any(): + print("Some industrial facilities have NaN buses") + + +def build_nodal_distribution_key(gdf): + + sectors = ['Iron and steel','Chemical industry','Cement','Non-metallic mineral products','Glass','Paper and printing','Non-ferrous metals'] + + distribution_keys = pd.DataFrame(index=n.buses.index, + columns=sectors, + dtype=float) + + pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout,index_col=0) + pop_layout["ct"] = pop_layout.index.str[:2] + ct_total = pop_layout.total.groupby(pop_layout["ct"]).sum() + pop_layout["ct_total"] = pop_layout["ct"].map(ct_total) + distribution_keys["population"] = pop_layout["total"]/pop_layout["ct_total"] + + for c in n.buses.country.unique(): + buses = n.buses.index[n.buses.country == c] + for sector in sectors: + facilities = gdf.index[(gdf.country_code == c) & (gdf.Subsector == sector)] + if not facilities.empty: + emissions = gdf.loc[facilities,"Emissions_ETS_2014"] + if emissions.sum() == 0: + distribution_key = pd.Series(1/len(facilities), + facilities) + else: + #BEWARE: this is a strong assumption + emissions = emissions.fillna(emissions.mean()) + distribution_key = emissions/emissions.sum() + distribution_key = distribution_key.groupby(gdf.loc[facilities,"bus"]).sum().reindex(buses,fill_value=0.) + else: + distribution_key = distribution_keys.loc[buses,"population"] + + if abs(distribution_key.sum() - 1) > 1e-4: + print(c,sector,distribution_key) + + distribution_keys.loc[buses,sector] = distribution_key + + distribution_keys.to_csv(snakemake.output.industrial_distribution_key) + +if __name__ == "__main__": + + + n = pypsa.Network(snakemake.input.network) + + hotmaps_database = prepare_hotmaps_database() + + assign_buses(hotmaps_database) + + build_nodal_distribution_key(hotmaps_database) diff --git a/scripts/build_industrial_energy_demand_per_country.py b/scripts/build_industrial_energy_demand_per_country.py new file mode 100644 index 00000000..6ee67f4f --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_country.py @@ -0,0 +1,83 @@ + +import pandas as pd +import numpy as np + + +tj_to_ktoe = 0.0238845 +ktoe_to_twh = 0.01163 + +eb_base_dir = "data/eurostat-energy_balances-may_2018_edition" +jrc_base_dir = "data/jrc-idees-2015" + +# import EU ratios df as csv +industry_sector_ratios=pd.read_csv(snakemake.input.industry_sector_ratios, + index_col=0) + +#material demand per country and industry (kton/a) +countries_production = pd.read_csv(snakemake.input.industrial_production_per_country, index_col=0) + +#Annual energy consumption in Switzerland by sector in 2015 (in TJ) +#From: Energieverbrauch in der Industrie und im Dienstleistungssektor, Der Bundesrat +#http://www.bfe.admin.ch/themen/00526/00541/00543/index.html?lang=de&dossier_id=00775 + +dic_Switzerland ={'Iron and steel': 7889., + 'Chemicals Industry': 26871., + 'Non-metallic mineral products': 15513.+3820., + 'Pulp, paper and printing': 12004., + 'Food, beverages and tobacco': 17728., + 'Non Ferrous Metals': 3037., + 'Transport Equipment': 14993., + 'Machinery Equipment': 4724., + 'Textiles and leather': 1742., + 'Wood and wood products': 0., + 'Other Industrial Sectors': 10825., + 'current electricity': 53760.} + + +eb_names={'NO':'Norway', 'AL':'Albania', 'BA':'Bosnia and Herzegovina', + 'MK':'FYR of Macedonia', 'GE':'Georgia', 'IS':'Iceland', + 'KO':'Kosovo', 'MD':'Moldova', 'ME':'Montenegro', 'RS':'Serbia', + 'UA':'Ukraine', 'TR':'Turkey', } + +jrc_names = {"GR" : "EL", + "GB" : "UK"} + +#final energy consumption per country and industry (TWh/a) +countries_df = countries_production.dot(industry_sector_ratios.T) +countries_df*= 0.001 #GWh -> TWh (ktCO2 -> MtCO2) + + + +non_EU = ['NO', 'CH', 'ME', 'MK', 'RS', 'BA', 'AL'] + + +# save current electricity consumption +for country in countries_df.index: + if country in non_EU: + if country == 'CH': + countries_df.loc[country, 'current electricity']=dic_Switzerland['current electricity']*tj_to_ktoe*ktoe_to_twh + else: + excel_balances = pd.read_excel('{}/{}.XLSX'.format(eb_base_dir,eb_names[country]), + sheet_name='2016', index_col=1,header=0, skiprows=1 ,squeeze=True) + + countries_df.loc[country, 'current electricity'] = excel_balances.loc['Industry', 'Electricity']*ktoe_to_twh + + else: + + excel_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(jrc_base_dir,jrc_names.get(country,country)), + sheet_name='Ind_Summary',index_col=0,header=0,squeeze=True) # the summary sheet + + s_out = excel_out.iloc[27:48,-1] + countries_df.loc[country, 'current electricity'] = s_out['Electricity']*ktoe_to_twh + + +rename_sectors = {'elec':'electricity', + 'biomass':'solid biomass', + 'heat':'low-temperature heat'} + +countries_df.rename(columns=rename_sectors,inplace=True) + +countries_df.index.name = "TWh/a (MtCO2/a)" + +countries_df.to_csv(snakemake.output.industrial_energy_demand_per_country, + float_format='%.2f') diff --git a/scripts/build_industrial_energy_demand_per_country_today.py b/scripts/build_industrial_energy_demand_per_country_today.py new file mode 100644 index 00000000..7593477b --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_country_today.py @@ -0,0 +1,140 @@ + +import pandas as pd + +# sub-sectors as used in PyPSA-Eur-Sec and listed in JRC-IDEES industry sheets +sub_sectors = {'Iron and steel' : ['Integrated steelworks','Electric arc'], + 'Non-ferrous metals' : ['Alumina production','Aluminium - primary production','Aluminium - secondary production','Other non-ferrous metals'], + 'Chemicals' : ['Basic chemicals', 'Other chemicals', 'Pharmaceutical products etc.', 'Basic chemicals feedstock'], + 'Non-metalic mineral' : ['Cement','Ceramics & other NMM','Glass production'], + 'Printing' : ['Pulp production','Paper production','Printing and media reproduction'], + 'Food' : ['Food, beverages and tobacco'], + 'Transport equipment' : ['Transport Equipment'], + 'Machinery equipment' : ['Machinery Equipment'], + 'Textiles and leather' : ['Textiles and leather'], + 'Wood and wood products' : ['Wood and wood products'], + 'Other Industrial Sectors' : ['Other Industrial Sectors'], +} + + +# name in JRC-IDEES Energy Balances +eb_sheet_name = {'Integrated steelworks' : 'cisb', + 'Electric arc' : 'cise', + 'Alumina production' : 'cnfa', + 'Aluminium - primary production' : 'cnfp', + 'Aluminium - secondary production' : 'cnfs', + 'Other non-ferrous metals' : 'cnfo', + 'Basic chemicals' : 'cbch', + 'Other chemicals' : 'coch', + 'Pharmaceutical products etc.' : 'cpha', + 'Basic chemicals feedstock' : 'cpch', + 'Cement' : 'ccem', + 'Ceramics & other NMM' : 'ccer', + 'Glass production' : 'cgla', + 'Pulp production' : 'cpul', + 'Paper production' : 'cpap', + 'Printing and media reproduction' : 'cprp', + 'Food, beverages and tobacco' : 'cfbt', + 'Transport Equipment' : 'ctre', + 'Machinery Equipment' : 'cmae', + 'Textiles and leather' : 'ctel', + 'Wood and wood products' : 'cwwp', + 'Mining and quarrying' : 'cmiq', + 'Construction' : 'ccon', + 'Non-specified': 'cnsi', +} + + + +fuels = {'all' : ['All Products'], + 'solid' : ['Solid Fuels'], + 'liquid' : ['Total petroleum products (without biofuels)'], + 'gas' : ['Gases'], + 'heat' : ['Nuclear heat','Derived heat'], + 'biomass' : ['Biomass and Renewable wastes'], + 'waste' : ['Wastes (non-renewable)'], + 'electricity' : ['Electricity'], +} + +ktoe_to_twh = 0.011630 + +eu28 = ['FR', 'DE', 'GB', 'IT', 'ES', 'PL', 'SE', 'NL', 'BE', 'FI', + 'DK', 'PT', 'RO', 'AT', 'BG', 'EE', 'GR', 'LV', 'CZ', + 'HU', 'IE', 'SK', 'LT', 'HR', 'LU', 'SI', 'CY', 'MT'] + +jrc_names = {"GR" : "EL", + "GB" : "UK"} + +year = 2015 +summaries = {} + +#for some reason the Energy Balances list Other Industrial Sectors separately +ois_subs = ['Mining and quarrying','Construction','Non-specified'] + + +#MtNH3/a +ammonia = pd.read_csv(snakemake.input.ammonia_production, + index_col=0)/1e3 + + + +for ct in eu28: + print(ct) + filename = 'data/jrc-idees-2015/JRC-IDEES-2015_EnergyBalance_{}.xlsx'.format(jrc_names.get(ct,ct)) + + summary = pd.DataFrame(index=list(fuels.keys()) + ['other']) + + for sector in sub_sectors: + if sector == 'Other Industrial Sectors': + subs = ois_subs + else: + subs = sub_sectors[sector] + + for sub in subs: + df = pd.read_excel(filename, + sheet_name=eb_sheet_name[sub], + index_col=0) + + s = df[year].astype(float) + + for fuel in fuels: + summary.at[fuel,sub] = s[fuels[fuel]].sum() + summary.at['other',sub] = summary.at['all',sub] - summary.loc[summary.index^['all','other'],sub].sum() + + summary['Other Industrial Sectors'] = summary[ois_subs].sum(axis=1) + summary.drop(columns=ois_subs,inplace=True) + + summary.drop(index=['all'],inplace=True) + + summary *= ktoe_to_twh + + summary['Basic chemicals'] += summary['Basic chemicals feedstock'] + summary.drop(columns=['Basic chemicals feedstock'], inplace=True) + + summary['Ammonia'] = 0. + summary.at['gas','Ammonia'] = snakemake.config['industry']['MWh_CH4_per_tNH3_SMR']*ammonia[str(year)].get(ct,0.) + summary.at['electricity','Ammonia'] = snakemake.config['industry']['MWh_elec_per_tNH3_SMR']*ammonia[str(year)].get(ct,0.) + summary['Basic chemicals (without ammonia)'] = summary['Basic chemicals'] - summary['Ammonia'] + summary.loc[summary['Basic chemicals (without ammonia)'] < 0, 'Basic chemicals (without ammonia)'] = 0. + summary.drop(columns=['Basic chemicals'], inplace=True) + + summaries[ct] = summary + +final_summary = pd.concat(summaries,axis=1) + +# add in the non-EU28 based on their output (which is derived from their energy too) +# output in MtMaterial/a +output = pd.read_csv(snakemake.input.industrial_production_per_country, + index_col=0)/1e3 + +eu28_averages = final_summary.groupby(level=1,axis=1).sum().divide(output.loc[eu28].sum(),axis=1) + +non_eu28 = output.index^eu28 + +for ct in non_eu28: + print(ct) + final_summary = pd.concat((final_summary,pd.concat({ct : eu28_averages.multiply(output.loc[ct],axis=1)},axis=1)),axis=1) + + +final_summary.index.name = 'TWh/a' + +final_summary.to_csv(snakemake.output.industrial_energy_demand_per_country_today) diff --git a/scripts/build_industrial_energy_demand_per_node.py b/scripts/build_industrial_energy_demand_per_node.py new file mode 100644 index 00000000..0c2300d1 --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_node.py @@ -0,0 +1,33 @@ + +import pandas as pd +import numpy as np + +# import EU ratios df as csv +industry_sector_ratios=pd.read_csv(snakemake.input.industry_sector_ratios, + index_col=0) + +#material demand per node and industry (kton/a) +nodal_production = pd.read_csv(snakemake.input.industrial_production_per_node, + index_col=0) + +#energy demand today to get current electricity +nodal_today = pd.read_csv(snakemake.input.industrial_energy_demand_per_node_today, + index_col=0) + +#final energy consumption per node and industry (TWh/a) +nodal_df = nodal_production.dot(industry_sector_ratios.T) +nodal_df*= 0.001 #GWh -> TWh (ktCO2 -> MtCO2) + + +rename_sectors = {'elec':'electricity', + 'biomass':'solid biomass', + 'heat':'low-temperature heat'} + +nodal_df.rename(columns=rename_sectors,inplace=True) + +nodal_df["current electricity"] = nodal_today["electricity"] + +nodal_df.index.name = "TWh/a (MtCO2/a)" + +nodal_df.to_csv(snakemake.output.industrial_energy_demand_per_node, + float_format='%.2f') diff --git a/scripts/build_industrial_energy_demand_per_node_today.py b/scripts/build_industrial_energy_demand_per_node_today.py new file mode 100644 index 00000000..6caf1f58 --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_node_today.py @@ -0,0 +1,54 @@ + +import pandas as pd +import numpy as np + +def build_nodal_demand(): + + industrial_demand = pd.read_csv(snakemake.input.industrial_energy_demand_per_country_today, + header=[0,1], + index_col=0) + + distribution_keys = pd.read_csv(snakemake.input.industrial_distribution_key, + index_col=0) + distribution_keys["country"] = distribution_keys.index.str[:2] + + nodal_demand = pd.DataFrame(0., + index=distribution_keys.index, + columns=industrial_demand.index, + dtype=float) + + #map JRC/our sectors to hotmaps sector, where mapping exist + sector_mapping = {'Electric arc' : 'Iron and steel', + 'Integrated steelworks' : 'Iron and steel', + 'DRI + Electric arc' : 'Iron and steel', + 'Ammonia' : 'Chemical industry', + 'Basic chemicals (without ammonia)' : 'Chemical industry', + 'Other chemicals' : 'Chemical industry', + 'Pharmaceutical products etc.' : 'Chemical industry', + 'Cement' : 'Cement', + 'Ceramics & other NMM' : 'Non-metallic mineral products', + 'Glass production' : 'Glass', + 'Pulp production' : 'Paper and printing', + 'Paper production' : 'Paper and printing', + 'Printing and media reproduction' : 'Paper and printing', + 'Alumina production' : 'Non-ferrous metals', + 'Aluminium - primary production' : 'Non-ferrous metals', + 'Aluminium - secondary production' : 'Non-ferrous metals', + 'Other non-ferrous metals' : 'Non-ferrous metals', + } + + for c in distribution_keys.country.unique(): + buses = distribution_keys.index[distribution_keys.country == c] + for sector in industrial_demand.columns.levels[1]: + distribution_key = distribution_keys.loc[buses,sector_mapping.get(sector,"population")] + demand = industrial_demand[c,sector] + outer = pd.DataFrame(np.outer(distribution_key,demand),index=distribution_key.index,columns=demand.index) + nodal_demand.loc[buses] += outer + + nodal_demand.index.name = "TWh/a" + + nodal_demand.to_csv(snakemake.output.industrial_energy_demand_per_node_today) + +if __name__ == "__main__": + + build_nodal_demand() diff --git a/scripts/build_industrial_demand_per_country.py b/scripts/build_industrial_production_per_country.py similarity index 72% rename from scripts/build_industrial_demand_per_country.py rename to scripts/build_industrial_production_per_country.py index 7d7d0ef3..c8fa6910 100644 --- a/scripts/build_industrial_demand_per_country.py +++ b/scripts/build_industrial_production_per_country.py @@ -1,26 +1,17 @@ - -#%matplotlib inline import pandas as pd import numpy as np +tj_to_ktoe = 0.0238845 +ktoe_to_twh = 0.01163 jrc_base_dir = "data/jrc-idees-2015" eb_base_dir = "data/eurostat-energy_balances-may_2018_edition" - - -tj_to_ktoe = 0.0238845 - -ktoe_to_twh = 0.01163 - -# import EU ratios df as csv -df=pd.read_csv('resources/industry_sector_ratios.csv', sep=';', index_col=0) - - - - +# year for which data is retrieved +raw_year = 2015 +year = raw_year-2016 sub_sheet_name_dict = { 'Iron and steel':'ISI', 'Chemicals Industry':'CHI', @@ -36,20 +27,17 @@ sub_sheet_name_dict = { 'Iron and steel':'ISI', index = ['elec','biomass','methane','hydrogen','heat','naphtha','process emission','process emission from feedstock'] -countries_df = pd.DataFrame(columns=index) #data frame final energy consumption per country and source - - non_EU = ['NO', 'CH', 'ME', 'MK', 'RS', 'BA', 'AL'] -rename = {"GR" : "EL", - "GB" : "UK"} +jrc_names = {"GR" : "EL", + "GB" : "UK"} -eu28 = ['FR', 'DE', 'GB', 'IT', 'ES', 'PL', 'SE', 'NL', 'BE', 'FI', 'CZ', - 'DK', 'PT', 'RO', 'AT', 'BG', 'EE', 'GR', 'LV', - 'HU', 'IE', 'SK', 'LT', 'HR', 'LU', 'SI'] + ['CY','MT'] +eu28 = ['FR', 'DE', 'GB', 'IT', 'ES', 'PL', 'SE', 'NL', 'BE', 'FI', + 'DK', 'PT', 'RO', 'AT', 'BG', 'EE', 'GR', 'LV', 'CZ', + 'HU', 'IE', 'SK', 'LT', 'HR', 'LU', 'SI', 'CY', 'MT'] -countries = non_EU + [rename.get(eu,eu) for eu in eu28[:-2]] +countries = non_EU + eu28 sectors = ['Iron and steel','Chemicals Industry','Non-metallic mineral products', @@ -69,6 +57,14 @@ sect2sub = {'Iron and steel':['Electric arc','Integrated steelworks'], 'Wood and wood products' :['Wood and wood products'], 'Other Industrial Sectors':['Other Industrial Sectors']} +subsectors = [ss for s in sectors for ss in sect2sub[s]] + +#material demand per country and industry (kton/a) +countries_demand = pd.DataFrame(index=countries, + columns=subsectors, + dtype=float) + + out_dic ={'Electric arc': 'Electric arc', 'Integrated steelworks': 'Integrated steelworks', 'Basic chemicals': 'Basic chemicals (kt ethylene eq.)', @@ -117,10 +113,11 @@ dic_sec_summary = {'Iron and steel': 'Iron and steel', 'Other Industrial Sectors': ' Other Industrial Sectors'} #countries=['CH'] -dic_countries={'NO':'Norway', 'AL':'Albania', 'BA':'Bosnia and Herzegovina', - 'MK':'FYR of Macedonia', 'GE':'Georgia', 'IS':'Iceland', - 'KO':'Kosovo', 'MD':'Moldova', 'ME':'Montenegro', 'RS':'Serbia', - 'UA':'Ukraine', 'TR':'Turkey', } +eb_names={'NO':'Norway', 'AL':'Albania', 'BA':'Bosnia and Herzegovina', + 'MK':'FYR of Macedonia', 'GE':'Georgia', 'IS':'Iceland', + 'KO':'Kosovo', 'MD':'Moldova', 'ME':'Montenegro', 'RS':'Serbia', + 'UA':'Ukraine', 'TR':'Turkey', } + dic_sec ={'Iron and steel':'Iron & steel industry', 'Chemicals Industry': 'Chemical and Petrochemical industry', 'Non-metallic mineral products': 'Non-ferrous metal industry', @@ -153,8 +150,8 @@ dic_Switzerland ={'Iron and steel': 7889., dic_sec_position={} for country in countries: - countries_df.loc[country] = 0 - print (country) + countries_demand.loc[country] = 0. + print(country) for sector in sectors: if country in non_EU: if country == 'CH': @@ -162,14 +159,14 @@ for country in countries: else: # estimate physical output #energy consumption in the sector and country - excel_balances = pd.read_excel('{}/{}.XLSX'.format(eb_base_dir,dic_countries[country]), + excel_balances = pd.read_excel('{}/{}.XLSX'.format(eb_base_dir,eb_names[country]), sheet_name='2016', index_col=2,header=0, skiprows=1 ,squeeze=True) e_country = excel_balances.loc[dic_sec[sector], 'Total all products'] #energy consumption in the sector and EU28 excel_sum_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_EU28.xlsx'.format(jrc_base_dir), sheet_name='Ind_Summary', index_col=0,header=0,squeeze=True) # the summary sheet - s_sum_out = excel_sum_out.iloc[49:76,-1] + s_sum_out = excel_sum_out.iloc[49:76,year] e_EU28 = s_sum_out[dic_sec_summary[sector]] ratio_country_EU28=e_country/e_EU28 @@ -177,62 +174,45 @@ for country in countries: excel_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_EU28.xlsx'.format(jrc_base_dir), sheet_name=sub_sheet_name_dict[sector],index_col=0,header=0,squeeze=True) # the summary sheet - s_out = excel_out.iloc[loc_dic[sector][0]:loc_dic[sector][1],-1] + s_out = excel_out.iloc[loc_dic[sector][0]:loc_dic[sector][1],year] for subsector in sect2sub[sector]: - output = ratio_country_EU28*s_out[out_dic[subsector]] - - for ind in index: - countries_df.loc[country, ind] += float(output*df.loc[ind, subsector]) # kton * MWh = GWh (# kton * tCO2 = ktCO2) + countries_demand.loc[country,subsector] = ratio_country_EU28*s_out[out_dic[subsector]] else: # read the input sheets - excel_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(jrc_base_dir,country), sheet_name=sub_sheet_name_dict[sector],index_col=0,header=0,squeeze=True) # the summary sheet + excel_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(jrc_base_dir,jrc_names.get(country,country)), sheet_name=sub_sheet_name_dict[sector],index_col=0,header=0,squeeze=True) # the summary sheet - s_out = excel_out.iloc[loc_dic[sector][0]:loc_dic[sector][1],-1] + s_out = excel_out.iloc[loc_dic[sector][0]:loc_dic[sector][1],year] for subsector in sect2sub[sector]: - output = s_out[out_dic[subsector]] - for ind in index: - countries_df.loc[country, ind] += output*df.loc[ind, subsector] #kton * MWh = GWh (# kton * tCO2 = ktCO2) - -countries_df*= 0.001 #GWh -> TWh (ktCO2 -> MtCO2) - -# save current electricity consumption -for country in countries: - if country in non_EU: - if country == 'CH': - countries_df.loc[country, 'current electricity']=dic_Switzerland['current electricity']*tj_to_ktoe*ktoe_to_twh - else: - excel_balances = pd.read_excel('{}/{}.XLSX'.format(eb_base_dir,dic_countries[country]), - sheet_name='2016', index_col=1,header=0, skiprows=1 ,squeeze=True) - - countries_df.loc[country, 'current electricity'] = excel_balances.loc['Industry', 'Electricity']*ktoe_to_twh - - else: - - excel_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(jrc_base_dir,country), - sheet_name='Ind_Summary',index_col=0,header=0,squeeze=True) # the summary sheet - - s_out = excel_out.iloc[27:48,-1] - countries_df.loc[country, 'current electricity'] = s_out['Electricity']*ktoe_to_twh - print(countries_df.loc[country, 'current electricity']) + countries_demand.loc[country,subsector] = s_out[out_dic[subsector]] +#include ammonia demand separately and remove ammonia from basic chemicals -# save df as csv -for ind in index: - countries_df[ind]=countries_df[ind].astype('float') -countries_df = countries_df.round(3) +ammonia = pd.read_csv(snakemake.input.ammonia_production, + index_col=0) -countries_df.rename(index={value : key for key,value in rename.items()},inplace=True) +there = ammonia.index.intersection(countries_demand.index) +missing = countries_demand.index^there -rename_sectors = {'elec':'electricity', - 'biomass':'solid biomass', - 'heat':'low-temperature heat'} +print("Following countries have no ammonia demand:", missing) -countries_df.rename(columns=rename_sectors,inplace=True) +countries_demand.insert(2,"Ammonia",0.) -countries_df.to_csv('resources/industrial_demand_per_country.csv', - float_format='%.2f') +countries_demand.loc[there,"Ammonia"] = ammonia.loc[there, str(raw_year)] + +countries_demand["Basic chemicals"] -= countries_demand["Ammonia"] + +#EE, HR and LT got negative demand through subtraction - poor data +countries_demand.loc[countries_demand["Basic chemicals"] < 0.,"Basic chemicals"] = 0. + +countries_demand.rename(columns={"Basic chemicals" : "Basic chemicals (without ammonia)"}, + inplace=True) + +countries_demand.index.name = "kton/a" + +countries_demand.to_csv(snakemake.output.industrial_production_per_country, + float_format='%.2f') diff --git a/scripts/build_industrial_production_per_country_tomorrow.py b/scripts/build_industrial_production_per_country_tomorrow.py new file mode 100644 index 00000000..bc66077c --- /dev/null +++ b/scripts/build_industrial_production_per_country_tomorrow.py @@ -0,0 +1,29 @@ + +import pandas as pd + +industrial_production = pd.read_csv(snakemake.input.industrial_production_per_country, + index_col=0) + +total_steel = industrial_production[["Integrated steelworks","Electric arc"]].sum(axis=1) + +fraction_primary_stays_primary = snakemake.config["industry"]["St_primary_fraction"]*total_steel.sum()/industrial_production["Integrated steelworks"].sum() + +industrial_production.insert(2, "DRI + Electric arc", + fraction_primary_stays_primary*industrial_production["Integrated steelworks"]) + +industrial_production["Electric arc"] = total_steel - industrial_production["DRI + Electric arc"] +industrial_production["Integrated steelworks"] = 0. + + +total_aluminium = industrial_production[["Aluminium - primary production","Aluminium - secondary production"]].sum(axis=1) + +fraction_primary_stays_primary = snakemake.config["industry"]["Al_primary_fraction"]*total_aluminium.sum()/industrial_production["Aluminium - primary production"].sum() + +industrial_production["Aluminium - primary production"] = fraction_primary_stays_primary*industrial_production["Aluminium - primary production"] +industrial_production["Aluminium - secondary production"] = total_aluminium - industrial_production["Aluminium - primary production"] + +industrial_production["Basic chemicals (without ammonia)"] *= snakemake.config["industry"]['HVC_primary_fraction'] + + +industrial_production.to_csv(snakemake.output.industrial_production_per_country_tomorrow, + float_format='%.2f') diff --git a/scripts/build_industrial_production_per_node.py b/scripts/build_industrial_production_per_node.py new file mode 100644 index 00000000..9e56e49a --- /dev/null +++ b/scripts/build_industrial_production_per_node.py @@ -0,0 +1,47 @@ + +import pandas as pd + +def build_nodal_industrial_production(): + + industrial_production = pd.read_csv(snakemake.input.industrial_production_per_country_tomorrow, + index_col=0) + + distribution_keys = pd.read_csv(snakemake.input.industrial_distribution_key, + index_col=0) + distribution_keys["country"] = distribution_keys.index.str[:2] + + nodal_industrial_production = pd.DataFrame(index=distribution_keys.index, + columns=industrial_production.columns, + dtype=float) + + #map JRC/our sectors to hotmaps sector, where mapping exist + sector_mapping = {'Electric arc' : 'Iron and steel', + 'Integrated steelworks' : 'Iron and steel', + 'DRI + Electric arc' : 'Iron and steel', + 'Ammonia' : 'Chemical industry', + 'Basic chemicals (without ammonia)' : 'Chemical industry', + 'Other chemicals' : 'Chemical industry', + 'Pharmaceutical products etc.' : 'Chemical industry', + 'Cement' : 'Cement', + 'Ceramics & other NMM' : 'Non-metallic mineral products', + 'Glass production' : 'Glass', + 'Pulp production' : 'Paper and printing', + 'Paper production' : 'Paper and printing', + 'Printing and media reproduction' : 'Paper and printing', + 'Alumina production' : 'Non-ferrous metals', + 'Aluminium - primary production' : 'Non-ferrous metals', + 'Aluminium - secondary production' : 'Non-ferrous metals', + 'Other non-ferrous metals' : 'Non-ferrous metals', + } + + for c in distribution_keys.country.unique(): + buses = distribution_keys.index[distribution_keys.country == c] + for sector in industrial_production.columns: + distribution_key = distribution_keys.loc[buses,sector_mapping.get(sector,"population")] + nodal_industrial_production.loc[buses,sector] = industrial_production.at[c,sector]*distribution_key + + nodal_industrial_production.to_csv(snakemake.output.industrial_production_per_node) + +if __name__ == "__main__": + + build_nodal_industrial_production() diff --git a/scripts/build_industry_sector_ratios.py b/scripts/build_industry_sector_ratios.py index 5d3acb9c..810b242a 100644 --- a/scripts/build_industry_sector_ratios.py +++ b/scripts/build_industry_sector_ratios.py @@ -5,11 +5,11 @@ import numpy as np base_dir = "data/jrc-idees-2015" -# year for wich data is retrieved -year = 2015 -year = year-2016 +# year for which data is retrieved +raw_year = 2015 +year = raw_year-2016 -conv_factor=11.630 #ktoe/kton -> MWh/ton +conv_factor=11.630 #GWh/ktoe OR MWh/toe country = 'EU28' @@ -26,7 +26,7 @@ sub_sheet_name_dict = { 'Iron and steel':'ISI', 'Wood and wood products': 'WWP', 'Other Industrial Sectors': 'OIS'} -index = ['elec','biomass','methane','hydrogen','heat','naphtha','process emission','process emission from feedstock'] +index = ['elec','coal','coke','biomass','methane','hydrogen','heat','naphtha','process emission','process emission from feedstock'] df = pd.DataFrame(index=index) @@ -58,7 +58,7 @@ excel_emi = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(base_dir,c sector = 'Electric arc' -df[sector] = 0 +df[sector] = 0. # read the corresponding lines s_fec = excel_fec.iloc[51:57,year] @@ -150,21 +150,122 @@ df.loc['process emission',sector] = s_emi['Process emissions']/s_out[sector] # u # final energy consumption per t df.loc[['elec','heat','methane'],sector] = df.loc[['elec','heat','methane'],sector]*conv_factor/s_out[sector] # unit MWh/t material +### For primary route: DRI with H2 + EAF - -## Integrated steelworks is converted to Electric arc -# -#> Electric arc uses scrap metal and Direct Reduced Iron -# -#> We assume that when substituting Integrated Steelworks by Electric arc furnaces. -#> 50% of Integrated steelworks is substituted by scrap metal + electric furnaces -#> 50% of Integrated steelworks is substituted by Direct Reduce Iron (with Hydrogen) + electric furnaces - -df['Integrated steelworks']=df['Electric arc'] +df['DRI + Electric arc'] = df['Electric arc'] # adding the Hydrogen necessary for the Direct Reduction of Iron. consumption 1.7 MWh H2 /ton steel -#(0.5 because only half of the steel requires DRI, the rest is scrap metal) -df.loc['hydrogen', 'Integrated steelworks'] =snakemake.config["industry"]["H2_DRI"] * snakemake.config["industry"]["DRI_ratio"] +df.loc['hydrogen', 'DRI + Electric arc'] = snakemake.config["industry"]["H2_DRI"] +# add electricity consumption in DRI shaft (0.322 MWh/tSl) +df.loc['elec', 'DRI + Electric arc'] += snakemake.config["industry"]["elec_DRI"] + + +### Integrated steelworks (could be used in combination with CCS) +### Assume existing fuels are kept, except for furnaces, refining, rolling, finishing +### Ignore 'derived gases' since these are top gases from furnaces + +sector = 'Integrated steelworks' + +df['Integrated steelworks']= 0. + +# read the corresponding lines +s_fec = excel_fec.iloc[3:9,year] + +assert s_fec.index[0] == sector + +# Lighting, Air compressors, Motor drives, Fans and pumps +df.loc['elec',sector] += s_fec[['Lighting','Air compressors','Motor drives','Fans and pumps']].sum() + +# Low enthalpy heat +df.loc['heat',sector] += s_fec['Low enthalpy heat'] + + +#### Steel: Sinter/Pellet making + +subsector = 'Steel: Sinter/Pellet making' + +# read the corresponding lines +s_fec = excel_fec.iloc[13:19,year] + +s_ued = excel_ued.iloc[13:19,year] + +assert s_fec.index[0] == subsector + +df.loc['elec',sector] += s_fec['Electricity'] +df.loc['methane',sector] += s_fec['Natural gas (incl. biogas)'] +df.loc['methane',sector] += s_fec['Residual fuel oil'] +df.loc['coal',sector] += s_fec['Solids'] + + +#### Steel: Blast / Basic Oxygen Furnace + +subsector = 'Steel: Blast /Basic oxygen furnace' + +# read the corresponding lines +s_fec = excel_fec.iloc[19:25,year] + +s_ued = excel_ued.iloc[19:25,year] + +assert s_fec.index[0] == subsector + +df.loc['methane',sector] += s_fec['Natural gas (incl. biogas)'] +df.loc['methane',sector] += s_fec['Residual fuel oil'] +df.loc['coal',sector] += s_fec['Solids'] +df.loc['coke',sector] += s_fec['Coke'] + + +#### Steel: Furnaces, Refining and Rolling +#> assume fully electrified +# +#> other processes are scaled by the used energy + +subsector = 'Steel: Furnaces, Refining and Rolling' + +# read the corresponding lines +s_fec = excel_fec.iloc[25:32,year] + +s_ued = excel_ued.iloc[25:32,year] + +assert s_fec.index[0] == subsector + +# this process can be electrified +eff = s_ued['Steel: Furnaces, Refining and Rolling - Electric']/s_fec['Steel: Furnaces, Refining and Rolling - Electric'] + +df.loc['elec',sector] += s_ued[subsector]/eff + +#### Steel: Products finishing +#> assume fully electrified + +subsector = 'Steel: Products finishing' + +# read the corresponding lines +s_fec = excel_fec.iloc[32:49,year] + +s_ued = excel_ued.iloc[32:49,year] + +assert s_fec.index[0] == subsector + +# this process can be electrified +eff = s_ued['Steel: Products finishing - Electric']/s_fec['Steel: Products finishing - Electric'] + +df.loc['elec',sector] += s_ued[subsector]/eff + + +#### Process emissions (per physical output) + +s_emi = excel_emi.iloc[3:50,year] + +assert s_emi.index[0] == sector + +s_out = excel_out.iloc[6:7,year] + +assert sector in str(s_out.index) + +df.loc['process emission',sector] = s_emi['Process emissions']/s_out[sector] # unit tCO2/t material + +# final energy consumption per t +df.loc[['elec','heat','methane','coke','coal'],sector] = df.loc[['elec','heat','methane','coke','coal'],sector]*conv_factor/s_out[sector] # unit MWh/t material + ## Chemicals Industry @@ -186,6 +287,8 @@ excel_emi = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(base_dir,c ### Basic chemicals +## Ammonia is separated afterwards + sector = 'Basic chemicals' df[sector] = 0 @@ -204,9 +307,8 @@ df.loc['heat',sector] += s_fec['Low enthalpy heat'] #### Chemicals: Feedstock (energy used as raw material) #> There are Solids, Refinery gas, LPG, Diesel oil, Residual fuel oil, Other liquids, Naphtha, Natural gas for feedstock. # -#> Naphta represents 47%, methane 17%. LPG (18%) solids, refinery gas, diesel oil, residual fuel oils and other liquids are asimilated to Napthta -# -#> Following Lechtenbohmer 2016, the 85 TWh/year of methane for the ammonia industry are substited by hydrogen. +#> Naphta represents 47%, methane 17%. LPG (18%) solids, refinery gas, diesel oil, residual fuel oils and other liquids are asimilated to Naphtha + subsector = 'Chemicals: Feedstock (energy used as raw material)' @@ -219,19 +321,16 @@ assert s_fec.index[0] == subsector df.loc['naphtha',sector] += s_fec['Naphtha'] # natural gas -# 85 TWh/year of methane for the ammonia industry are substituted by hydrogen -df.loc['methane',sector] += s_fec['Natural gas'] - snakemake.config["industry"]["H2_for_NH3"]/conv_factor -df.loc['hydrogen',sector] += snakemake.config["industry"]["H2_for_NH3"]/conv_factor -# 1 ktoe = 11630 MWh +df.loc['methane',sector] += s_fec['Natural gas'] # LPG and other feedstock materials are assimilated to naphtha since they will be produced trough Fischer-Tropsh process df.loc['naphtha',sector] += (s_fec['Solids'] + s_fec['Refinery gas'] + s_fec['LPG'] + s_fec['Diesel oil'] + s_fec['Residual fuel oil'] + s_fec['Other liquids']) #### Chemicals: Steam processing -#> All the final energy consumption in the Stem processing is converted to biomass. +#> All the final energy consumption in the Steam processing is converted to methane, since we need >1000 C temperatures here. # -#> The current efficiency of biomass is assumed in the conversion. +#> The current efficiency of methane is assumed in the conversion. subsector = 'Chemicals: Steam processing' @@ -242,11 +341,11 @@ s_ued = excel_ued.iloc[22:33,year] assert s_fec.index[0] == subsector -# efficiency of biomass -eff_bio = s_ued['Biomass']/s_fec['Biomass'] +# efficiency of natural gas +eff_ch4 = s_ued['Natural gas (incl. biogas)']/s_fec['Natural gas (incl. biogas)'] -# replace all fec by biomass -df.loc['biomass',sector] += s_ued[subsector]/eff_bio +# replace all fec by methane +df.loc['methane',sector] += s_ued[subsector]/eff_ch4 #### Chemicals: Furnaces #> assume fully electrified @@ -298,10 +397,25 @@ s_emi = excel_emi.iloc[3:57,year] assert s_emi.index[0] == sector + +## Correct everything by subtracting 2015's ammonia demand and putting in ammonia demand for H2 and electricity separately + s_out = excel_out.iloc[8:9,year] assert sector in str(s_out.index) +ammonia = pd.read_csv(snakemake.input.ammonia_production, + index_col=0) + +eu28 = ['FR', 'DE', 'GB', 'IT', 'ES', 'PL', 'SE', 'NL', 'BE', 'FI', + 'DK', 'PT', 'RO', 'AT', 'BG', 'EE', 'GR', 'LV', 'CZ', + 'HU', 'IE', 'SK', 'LT', 'HR', 'LU', 'SI', 'CY', 'MT'] + +#ktNH3/a +total_ammonia = ammonia.loc[ammonia.index.intersection(eu28),str(raw_year)].sum() + +s_out -= total_ammonia + df.loc['process emission',sector] += (s_emi['Process emissions'] - snakemake.config["industry"]['petrochemical_process_emissions']*1e3 - snakemake.config["industry"]['NH3_process_emissions']*1e3)/s_out.values # unit tCO2/t material #these are emissions originating from feedstock, i.e. could be non-fossil origin @@ -311,8 +425,24 @@ df.loc['process emission from feedstock',sector] += (snakemake.config["industry" # final energy consumption per t sources=['elec','biomass', 'methane', 'hydrogen', 'heat','naphtha'] -df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out.values# unit MWh/t material -# 1 ktoe = 11630 MWh +#convert from ktoe/a to GWh/a +df.loc[sources,sector] *= conv_factor + +df.loc['methane',sector] -= total_ammonia*snakemake.config['industry']['MWh_CH4_per_tNH3_SMR'] +df.loc['elec',sector] -= total_ammonia*snakemake.config['industry']['MWh_elec_per_tNH3_SMR'] + +df.loc[sources,sector] = df.loc[sources,sector]/s_out.values # unit MWh/t material + +df.rename(columns={sector : sector + " (without ammonia)"}, + inplace=True) + +sector = 'Ammonia' + +df[sector] = 0. + +df.loc['hydrogen',sector] = snakemake.config['industry']['MWh_H2_per_tNH3_electrolysis'] +df.loc['elec',sector] = snakemake.config['industry']['MWh_elec_per_tNH3_electrolysis'] + ### Other chemicals @@ -405,7 +535,7 @@ df.loc['process emission',sector] += s_emi['Process emissions']/s_out.values # u # final energy consumption per t sources=['elec','biomass', 'methane', 'hydrogen', 'heat','naphtha'] -df.loc[sources,sector] = df.loc[sources,sector]*11.630/s_out.values # unit MWh/t material +df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out.values # unit MWh/t material # 1 ktoe = 11630 MWh ### Pharmaceutical products etc. @@ -495,7 +625,7 @@ df.loc['process emission',sector] += 0 # unit tCO2/t material # final energy consumption per t sources=['elec','biomass', 'methane', 'hydrogen', 'heat', 'naphtha'] -df.loc[sources,sector] = df.loc[sources,sector]*11.630/s_out.values # unit MWh/t material +df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out.values # unit MWh/t material # 1 ktoe = 11630 MWh ## Non-metallic mineral products @@ -527,7 +657,7 @@ excel_emi = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(base_dir,c # #> Temperatures above 1400C are required for procesing limestone and sand into clinker. # -#> Everything (except current electricity and heat consumption) is transformed into biomass +#> Everything (except current electricity and heat consumption and existing biomass) is transformed into methane for high T. sector = 'Cement' @@ -546,10 +676,11 @@ df.loc['elec',sector] += s_fec[['Lighting','Air compressors','Motor drives','Fan # Low enthalpy heat df.loc['heat',sector] += s_fec['Low enthalpy heat'] -# Efficiency changes due to biomass -eff_bio=s_ued['Biomass']/s_fec['Biomass'] +# pre-processing: keep existing elec and biomass, rest to methane +df.loc['elec', sector] += s_fec['Cement: Grinding, milling of raw material'] +df.loc['biomass', sector] += s_fec['Biomass'] +df.loc['methane', sector] += s_fec['Cement: Pre-heating and pre-calcination'] - s_fec['Biomass'] -df.loc['biomass', sector] += s_ued[['Cement: Grinding, milling of raw material', 'Cement: Pre-heating and pre-calcination']].sum()/eff_bio #### Cement: Clinker production (kilns) @@ -562,10 +693,10 @@ s_ued = excel_ued.iloc[34:43,year] assert s_fec.index[0] == subsector -# Efficiency changes due to biomass -eff_bio=s_ued['Biomass']/s_fec['Biomass'] +df.loc['biomass', sector] += s_fec['Biomass'] +df.loc['methane', sector] += s_fec['Cement: Clinker production (kilns)'] - s_fec['Biomass'] +df.loc['elec', sector] += s_fec['Cement: Grinding, packaging'] -df.loc['biomass', sector] += s_ued[['Cement: Clinker production (kilns)', 'Cement: Grinding, packaging']].sum()/eff_bio #### Process-emission came from the calcination of limestone to chemically reactive calcium oxide (lime). #> Calcium carbonate -> lime + CO2 @@ -635,7 +766,7 @@ df.loc['process emission',sector] += s_emi['Process emissions']/s_out.values # u # final energy consumption per t sources=['elec','biomass', 'methane', 'hydrogen', 'heat','naphtha'] -df.loc[sources,sector] = df.loc[sources,sector]*11.630/s_out.values # unit MWh/t material +df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out.values # unit MWh/t material # 1 ktoe = 11630 MWh ### Glass production @@ -707,7 +838,7 @@ excel_out = pd.read_excel('{}/JRC-IDEES-2015_Industry_{}.xlsx'.format(base_dir,c # #> Includes three subcategories: (a) Wood preparation, grinding; (b) Pulping; (c) Cleaning. # -#> (b) Pulping is electrified. The efficiency is calculated from the pulping process that is already electric. +#> (b) Pulping is either biomass or electric; left like this (dominated by biomass). # #> (a) Wood preparation, grinding and (c) Cleaning represent only 10% their current energy consumption is assumed to be electrified without any change in efficiency @@ -729,14 +860,11 @@ df.loc['elec', sector] += s_fec[['Lighting','Air compressors','Motor drives','Fa df.loc['heat', sector] += s_fec['Low enthalpy heat'] # Industry-specific -df.loc['elec', sector] += s_fec[['Pulp: Wood preparation, grinding', 'Pulp: Cleaning']].sum() +df.loc['elec', sector] += s_fec[['Pulp: Wood preparation, grinding', 'Pulp: Cleaning', 'Pulp: Pulping electric']].sum() -# Efficiency changes due to electrification -eff_elec=s_ued['Pulp: Pulping electric']/s_fec['Pulp: Pulping electric'] -df.loc['elec', sector] += s_ued['Pulp: Pulping thermal']/eff_elec - -# add electricity from process that is already electrified -df.loc['elec', sector] += s_fec['Pulp: Pulping electric'] +# Efficiency changes due to biomass +eff_bio=s_ued['Biomass']/s_fec['Biomass'] +df.loc['biomass', sector] += s_ued['Pulp: Pulping thermal']/eff_bio s_out = excel_out.iloc[8:9,year] @@ -751,7 +879,7 @@ df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out['Pulp producti # #> Includes three subcategories: (a) Stock preparation; (b) Paper machine; (c) Product finishing. # -#> (b) Paper machine and (c) Product finishing are electrified. The efficiency is calculated from the pulping process that is already electric. +#> (b) Paper machine and (c) Product finishing are left electric and thermal is moved to biomass. The efficiency is calculated from the pulping process that is already biomass. # #> (a) Stock preparation represents only 7% and its current energy consumption is assumed to be electrified without any change in efficiency. @@ -775,16 +903,35 @@ df.loc['heat', sector] += s_fec['Low enthalpy heat'] # Industry-specific df.loc['elec', sector] += s_fec['Paper: Stock preparation'] -# Efficiency changes due to electrification -eff_elec=s_ued['Paper: Paper machine - Electricity']/s_fec['Paper: Paper machine - Electricity'] -df.loc['elec', sector] += s_ued['Paper: Paper machine - Steam use']/eff_elec - -eff_elec=s_ued['Paper: Product finishing - Electricity']/s_fec['Paper: Product finishing - Electricity'] -df.loc['elec', sector] += s_ued['Paper: Product finishing - Steam use']/eff_elec - # add electricity from process that is already electrified df.loc['elec', sector] += s_fec['Paper: Paper machine - Electricity'] +# add electricity from process that is already electrified +df.loc['elec', sector] += s_fec['Paper: Product finishing - Electricity'] + + +s_fec = excel_fec.iloc[53:64,year] + +s_ued = excel_ued.iloc[53:64,year] + +assert s_fec.index[0] == 'Paper: Paper machine - Steam use' + +# Efficiency changes due to biomass +eff_bio=s_ued['Biomass']/s_fec['Biomass'] +df.loc['biomass', sector] += s_ued['Paper: Paper machine - Steam use']/eff_bio + + +s_fec = excel_fec.iloc[66:77,year] + +s_ued = excel_ued.iloc[66:77,year] + +assert s_fec.index[0] == 'Paper: Product finishing - Steam use' + +# Efficiency changes due to biomass +eff_bio=s_ued['Biomass']/s_fec['Biomass'] +df.loc['biomass', sector] += s_ued['Paper: Product finishing - Steam use']/eff_bio + + # read the corresponding lines s_out = excel_out.iloc[9:10,year] @@ -878,8 +1025,8 @@ df.loc['elec', sector] += s_ued['Food: Drying']/eff_elec eff_elec=s_ued['Food: Electric cooling']/s_fec['Food: Electric cooling'] df.loc['elec', sector] += s_ued['Food: Process cooling and refrigeration']/eff_elec -# Steam processing is electrified without change in efficiency -df.loc['elec', sector] += s_fec['Food: Steam processing'] +# Steam processing goes all to biomass without change in efficiency +df.loc['biomass', sector] += s_fec['Food: Steam processing'] # add electricity from process that is already electrified df.loc['elec', sector] += s_fec['Food: Electric machinery'] @@ -1052,9 +1199,6 @@ sources=['elec','biomass', 'methane', 'hydrogen', 'heat','naphtha'] df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out['Aluminium - secondary production'] # unit MWh/t material # 1 ktoe = 11630 MWh -# primary route is divided into 50% remains as today and 50% is transformed into secondary route -df.loc[sources,'Aluminium - primary production'] = (1-snakemake.config["industry"]["Al_to_scrap"])*df.loc[sources,'Aluminium - primary production'] + snakemake.config["industry"]["Al_to_scrap"]*df.loc[sources,'Aluminium - secondary production'] -df.loc['process emission','Aluminium - primary production'] = (1-snakemake.config["industry"]["Al_to_scrap"])*df.loc['process emission','Aluminium - primary production'] ### Other non-ferrous metals @@ -1372,4 +1516,5 @@ sources=['elec','biomass', 'methane', 'hydrogen', 'heat','naphtha'] df.loc[sources,sector] = df.loc[sources,sector]*conv_factor/s_out['Physical output (index)'] # unit MWh/t material -df.to_csv('resources/industry_sector_ratios.csv', sep=';') +df.index.name = "MWh/tMaterial" +df.to_csv('resources/industry_sector_ratios.csv') diff --git a/scripts/build_retro_cost.py b/scripts/build_retro_cost.py new file mode 100644 index 00000000..af44c91a --- /dev/null +++ b/scripts/build_retro_cost.py @@ -0,0 +1,484 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Mon Jan 20 14:57:21 2020 + +@author: bw0928 + +***************************************************************************** +This script calculates cost-energy_saving-curves for retrofitting +for the EU-37 countries, based on the building stock data from hotmaps and +the EU building stock database +***************************************************************************** + +Structure: + + (1) set assumptions and parameters + (2) read and prepare data + (3) calculate (€-dE-curves) + (4) save in csv + +***************************************************************************** +""" + +import pandas as pd +import matplotlib.pyplot as plt + +#%% ************ FUCNTIONS *************************************************** + +# windows --------------------------------------------------------------- +def window_limit(l, window_assumptions): + """ + define limit u value from which on window is retrofitted + """ + m = (window_assumptions.diff()["u_limit"] / + window_assumptions.diff()["strength"]).dropna().iloc[0] + a = window_assumptions["u_limit"][0] - m * window_assumptions["strength"][0] + return m*l + a + +def u_retro_window(l, window_assumptions): + """ + define retrofitting value depending on renovation strength + """ + m = (window_assumptions.diff()["u_value"] / + window_assumptions.diff()["strength"]).dropna().iloc[0] + a = window_assumptions["u_value"][0] - m * window_assumptions["strength"][0] + return max(m*l + a, 0.8) + +def window_cost(u, cost_retro, window_assumptions): + """ + get costs for new windows depending on u value + + """ + m = (window_assumptions.diff()["cost"] / + window_assumptions.diff()["u_value"]).dropna().iloc[0] + a = window_assumptions["cost"][0] - m * window_assumptions["u_value"][0] + window_cost = m*u + a + if annualise_cost: + window_cost = window_cost * interest_rate / (1 - (1 + interest_rate) + ** -cost_retro.loc["Windows", "life_time"]) + return window_cost + +# functions for intermediate steps (~l, ~area) ----------------------------- +def calculate_new_u(u_values, l, l_weight, k=0.035): + """ + calculate U-values after building retrofitting, depending on the old + U-values (u_values). + They depend for the components Roof, Wall, Floor on the additional + insulation thickness (l), and the weighting for the corresponding + component (l_weight). + Windows are renovated to new ones with U-value (function: u_retro_window(l)) + only if the are worse insulated than a certain limit value + (function: window_limit). + + Parameters + ---------- + u_values: pd.DataFrame + l: string + l_weight: pd.DataFrame (component, weight) + k: thermal conductivity + + """ + return u_values.apply(lambda x: + k / ((k / x.value) + + (float(l) * l_weight.loc[x.type][0])) + if x.type!="Windows" + else (min(x.value, u_retro_window(float(l), window_assumptions)) + if x.value>window_limit(float(l), window_assumptions) else x.value), + axis=1) + +def calculate_dE(u_values, l, average_surface_w): + """ + returns energy demand after retrofit (per unit of unrefurbished energy + demand) depending on current and retrofitted U-values, this energy demand + is weighted depending on the average surface of each component for the + building type of the assumend subsector + """ + return u_values.apply(lambda x: x[l] / x.value * + average_surface_w.loc[x.assumed_subsector, + x.type], + axis=1) + + +def calculate_costs(u_values, l, cost_retro, average_surface): + """ + returns costs for a given retrofitting strength weighted by the average + surface/volume ratio of the component for each building type + """ + return u_values.apply(lambda x: (cost_retro.loc[x.type, "cost_var"] * + 100 * float(l) * l_weight.loc[x.type][0] + + cost_retro.loc[x.type, "cost_fix"]) * + average_surface.loc[x.assumed_subsector, x.type] / + average_surface.loc[x.assumed_subsector, "surface"] + if x.type!="Windows" + else (window_cost(x[l], cost_retro, window_assumptions) * + average_surface.loc[x.assumed_subsector, x.type] / + average_surface.loc[x.assumed_subsector, "surface"] + if x.value>window_limit(float(l), window_assumptions) else 0), + axis=1) + + +# --------------------------------------------------------------------------- +def prepare_building_stock_data(): + """ + reads building stock data and cleans up the format, returns + -------- + u_values: pd.DataFrame current U-values + average_surface: pd.DataFrame (index= building type, + columns = [surface [m],height [m], + components area [m^2]]) + average_surface_w: pd.DataFrame weighted share of the components per + building type + area_tot: heated floor area per country and sector [Mm²] + area: heated floor area [Mm²] for country, sector, building + type and period + + """ + + building_data = pd.read_csv(snakemake.input.building_stock, + usecols=list(range(13))) + + # standardize data + building_data["type"].replace( + {'Covered area: heated [Mm²]': 'Heated area [Mm²]', + 'Windows ': 'Windows', + 'Walls ': 'Walls', + 'Roof ': 'Roof', + 'Floor ': 'Floor'}, inplace=True) + + building_data.country_code = building_data.country_code.str.upper() + building_data["subsector"].replace({'Hotels and Restaurants': + 'Hotels and restaurants'}, inplace=True) + building_data["sector"].replace({'Residential sector': 'residential', + 'Service sector': 'services'}, + inplace=True) + # extract u-values + u_values = building_data[(building_data.feature.str.contains("U-values")) + & (building_data.subsector != "Total")] + + components = list(u_values.type.unique()) + + country_iso_dic = building_data.set_index("country")["country_code"].to_dict() + + # add missing /rename countries + country_iso_dic.update({'Norway': 'NO', + 'Iceland': 'IS', + 'Montenegro': 'ME', + 'Serbia': 'RS', + 'Albania': 'AL', + 'United Kingdom': 'GB', + 'Bosnia and Herzegovina': 'BA', + 'Switzerland': 'CH'}) + + # heated floor area ---------------------------------------------------------- + area = building_data[(building_data.type == 'Heated area [Mm²]') & + (building_data.subsector != "Total")] + area_tot = area.groupby(["country", "sector"]).sum() + area = pd.concat([area, area.apply(lambda x: x.value / + area_tot.value.loc[(x.country, x.sector)], + axis=1).rename("weight")],axis=1) + area = area.groupby(['country', 'sector', 'subsector', 'bage']).sum() + area_tot.rename(index=country_iso_dic, inplace=True) + + # add for some missing countries floor area from other data sources + area_missing = pd.read_csv(snakemake.input.floor_area_missing, + index_col=[0, 1], usecols=[0, 1, 2, 3]) + area_tot = area_tot.append(area_missing.unstack(level=-1).dropna().stack()) + area_tot = area_tot.loc[~area_tot.index.duplicated(keep='last')] + + # for still missing countries calculate floor area by population size + pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0) + pop_layout["ct"] = pop_layout.index.str[:2] + ct_total = pop_layout.total.groupby(pop_layout["ct"]).sum() + + area_per_pop = area_tot.unstack().reindex(index=ct_total.index).apply(lambda x: x / ct_total[x.index]) + missing_area_ct = ct_total.index.difference(area_tot.index.levels[0]) + for ct in (missing_area_ct & ct_total.index): + averaged_data = pd.DataFrame( + area_per_pop.value.reindex(map_for_missings[ct]).mean() + * ct_total[ct], + columns=["value"]) + index = pd.MultiIndex.from_product([[ct], averaged_data.index.to_list()]) + averaged_data.index = index + averaged_data["estimated"] = 1 + if ct not in area_tot.index.levels[0]: + area_tot = area_tot.append(averaged_data, sort=True) + else: + area_tot.loc[averaged_data.index] = averaged_data + + # u_values for Poland are missing -> take them from eurostat ----------- + u_values_PL = pd.read_csv(snakemake.input.u_values_PL) + area_PL = area.loc["Poland"].reset_index() + data_PL = pd.DataFrame(columns=u_values.columns, index=area_PL.index) + data_PL["country"] = "Poland" + data_PL["country_code"] = "PL" + # data from area + for col in ["sector", "subsector", "bage"]: + data_PL[col] = area_PL[col] + data_PL["btype"] = area_PL["subsector"] + + data_PL_final = pd.DataFrame() + for component in components: + data_PL["type"] = component + data_PL["value"] = data_PL.apply(lambda x: u_values_PL[(u_values_PL.component==component) + & (u_values_PL.sector==x["sector"])] + [x["bage"]].iloc[0], axis=1) + data_PL_final = data_PL_final.append(data_PL) + + u_values = pd.concat([u_values, + data_PL_final]).reset_index(drop=True) + + # clean data --------------------------------------------------------------- + # smallest possible today u values for windows 0.8 (passive house standard) + # maybe the u values for the glass and not the whole window including frame + # for those types assumed in the dataset + u_values.loc[(u_values.type=="Windows") & (u_values.value<0.8), "value"] = 0.8 + # drop unnecessary columns + u_values.drop(['topic', 'feature','detail', 'estimated','unit'], + axis=1, inplace=True, errors="ignore") + # only take in config.yaml specified countries into account + countries = ct_total.index + area_tot = area_tot.loc[countries] + + # average component surface -------------------------------------------------- + average_surface = (pd.read_csv(snakemake.input.average_surface, + nrows=3, + header=1, + index_col=0).rename( + {'Single/two family house': 'Single family- Terraced houses', + 'Large apartment house': 'Multifamily houses', + 'Apartment house': 'Appartment blocks'}, + axis="index")).iloc[:, :6] + average_surface.columns = ["surface", "height", "Roof", + "Walls", "Floor", "Windows"] + # get area share of component + average_surface_w = average_surface[components].apply(lambda x: x / x.sum(), + axis=1) + + return (u_values, average_surface, + average_surface_w, area_tot, area, country_iso_dic, countries) + + +def prepare_cost_retro(): + """ + read and prepare retro costs, annualises them if annualise_cost=True + """ + cost_retro = pd.read_csv(snakemake.input.cost_germany, + nrows=4, index_col=0, usecols=[0, 1, 2, 3]) + cost_retro.index = cost_retro.index.str.capitalize() + cost_retro.rename(index={"Window": "Windows", "Wall": "Walls"}, inplace=True) + + window_assumptions = pd.read_csv(snakemake.input.window_assumptions, + skiprows=[1], usecols=[0,1,2,3], nrows=2) + + if annualise_cost: + cost_retro[["cost_fix", "cost_var"]] = (cost_retro[["cost_fix", "cost_var"]] + .apply(lambda x: x * interest_rate / + (1 - (1 + interest_rate) + ** -cost_retro.loc[x.index, + "life_time"]))) + + return cost_retro, window_assumptions + + +def calculate_cost_energy_curve(u_values, l_strength, l_weight, average_surface_w, + average_surface, area, country_iso_dic, + countries): + """ + returns energy demand per unit of unrefurbished (dE) and cost for given + renovation strength (l_strength), data for missing countries is + approximated by countries with similar building stock (dict:map_for_missings) + + parameter + -------- input ----------- + u_values: pd.DataFrame current U-values + l_strength: list of strings (strength of retrofitting) + l_weight: pd.DataFrame (component, weight) + average_surface: pd.DataFrame (index= building type, + columns = [surface [m],height [m], + components area [m^2]]) + average_surface_w: pd.DataFrame weighted share of the components per + building type + area: heated floor area [Mm²] for country, sector, building + type and period + country_iso_dic: dict (maps country name to 2-letter-iso-code) + countries: pd.Index (specified countries in config.yaml) + -------- output ---------- + res: pd.DataFrame(index=pd.MultiIndex([country, sector]), + columns=pd.MultiIndex([(dE/cost), l_strength])) + """ + + energy_saved = u_values[['country', 'sector', 'subsector', 'bage', 'type']] + costs = u_values[['country', 'sector', 'subsector', 'bage', 'type']] + + for l in l_strength: + u_values[l] = calculate_new_u(u_values, l, l_weight) + energy_saved = pd.concat([energy_saved, + calculate_dE(u_values, l, average_surface_w).rename(l)], + axis=1) + costs = pd.concat([costs, + calculate_costs(u_values, l, cost_retro, average_surface).rename(l)], + axis=1) + + # energy and costs per country, sector, subsector and year + e_tot = energy_saved.groupby(['country', 'sector', 'subsector', 'bage']).sum() + cost_tot = costs.groupby(['country', 'sector', 'subsector', 'bage']).sum() + + # weighting by area -> energy and costs per country and sector + # in case of missing data first concat + energy_saved = pd.concat([e_tot, area.weight], axis=1) + cost_res = pd.concat([cost_tot, area.weight], axis=1) + energy_saved = (energy_saved.apply(lambda x: x * x.weight, axis=1) + .groupby(level=[0, 1]).sum()) + cost_res = (cost_res.apply(lambda x: x * x.weight, axis=1) + .groupby(level=[0, 1]).sum()) + + res = pd.concat([energy_saved[l_strength], cost_res[l_strength]], + axis=1, keys=["dE", "cost"]) + res.rename(index=country_iso_dic, inplace=True) + + res = res.reindex(index=countries, level=0) + # reset index because otherwise not considered countries still in index.levels[0] + res = res.reset_index().set_index(["country", "sector"]) + + # map missing countries + for ct in pd.Index(map_for_missings.keys()) & countries: + averaged_data = res.reindex(index=map_for_missings[ct], level=0).mean(level=1) + index = pd.MultiIndex.from_product([[ct], averaged_data.index.to_list()]) + averaged_data.index = index + if ct not in res.index.levels[0]: + res = res.append(averaged_data) + else: + res.loc[averaged_data.index] = averaged_data + + return res + + +# %% **************** MAIN ************************************************ +if __name__ == "__main__": + # for testing + if 'snakemake' not in globals(): + import yaml + import os + from vresutils.snakemake import MockSnakemake + snakemake = MockSnakemake( + wildcards=dict( + network='elec', + simpl='', + clusters='37', + lv='1', + opts='Co2L-3H', + sector_opts="[Co2L0p0-168H-T-H-B-I]"), + input=dict( + building_stock="data/retro/data_building_stock.csv", + u_values_PL="data/retro/u_values_poland.csv", + tax_w="data/retro/electricity_taxes_eu.csv", + construction_index="data/retro/comparative_level_investment.csv", + average_surface="data/retro/average_surface_components.csv", + floor_area_missing="data/retro/floor_area_missing.csv", + clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", + cost_germany="data/retro/retro_cost_germany.csv", + window_assumptions="data/retro/window_assumptions.csv"), + output=dict( + retro_cost="resources/retro_cost_{network}_s{simpl}_{clusters}.csv", + floor_area="resources/floor_area_{network}_s{simpl}_{clusters}.csv") + ) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) + +# ******** (1) ASSUMPTIONS - PARAMETERS ********************************** + retro_opts = snakemake.config["sector"]["retrofitting"] + interest_rate = retro_opts["interest_rate"] + annualise_cost = retro_opts["annualise_cost"] # annualise the investment costs + tax_weighting = retro_opts["tax_weighting"] # weight costs depending on taxes in countries + construction_index = retro_opts["construction_index"] # weight costs depending on labour/material costs per ct + # additional insulation thickness, determines maximum possible savings + l_strength = retro_opts["l_strength"] + + k = 0.035 # thermal conductivity standard value + # strenght of relative retrofitting depending on the component + # determined by historical data of insulation thickness for retrofitting + l_weight = pd.DataFrame({"weight": [1.95, 1.48, 1.]}, + index=["Roof", "Walls", "Floor"]) + + + # mapping missing countries by neighbours + map_for_missings = { + "AL": ["BG", "RO", "GR"], + "BA": ["HR"], + "RS": ["BG", "RO", "HR", "HU"], + "MK": ["BG", "GR"], + "ME": ["BA", "AL", "RS", "HR"], + "CH": ["SE", "DE"], + "NO": ["SE"], + } + +# %% ************ (2) DATA *************************************************** + + # building stock data ----------------------------------------------------- + (u_values, average_surface, average_surface_w, + area_tot, area, country_iso_dic, countries) = prepare_building_stock_data() + + # costs for retrofitting ------------------------------------------------- + cost_retro, window_assumptions = prepare_cost_retro() + + # weightings of costs + if construction_index: + cost_w = pd.read_csv(snakemake.input.construction_index, + skiprows=3, nrows=32, index_col=0) + # since German retrofitting costs are assumed + cost_w = ((cost_w["2018"] / cost_w.loc["Germany", "2018"]) + .rename(index=country_iso_dic)) + + if tax_weighting: + tax_w = pd.read_csv(snakemake.input.tax_w, + header=12, nrows=39, index_col=0, usecols=[0, 4]) + tax_w.rename(index=country_iso_dic, inplace=True) + tax_w = tax_w.apply(pd.to_numeric, errors='coerce').iloc[:, 0] + tax_w.dropna(inplace=True) + +# %% ********** (3) CALCULATE COST-ENERGY-CURVES **************************** + + # for missing weighting of surfaces of building types assume MultiFamily houses + u_values["assumed_subsector"] = u_values.subsector + u_values.loc[~u_values.subsector.isin(average_surface.index), + "assumed_subsector"] = 'Multifamily houses' + + dE_and_cost = calculate_cost_energy_curve(u_values, l_strength, l_weight, + average_surface_w, average_surface, area, + country_iso_dic, countries) + # reset index because otherwise not considered countries still in index.levels[0] + dE_and_cost = dE_and_cost.reset_index().set_index(["country", "sector"]) + + # weights costs after construction index + if construction_index: + for ct in list(map_for_missings.keys() - cost_w.index): + cost_w.loc[ct] = cost_w.reindex(index=map_for_missings[ct]).mean() + dE_and_cost.cost = dE_and_cost.cost.apply(lambda x: x * cost_w[x.index.levels[0]]) + + # weights cost depending on country taxes + if tax_weighting: + for ct in list(map_for_missings.keys() - tax_w.index): + tax_w[ct] = tax_w.reindex(index=map_for_missings[ct]).mean() + dE_and_cost.cost = dE_and_cost.cost.apply(lambda x: x * tax_w[x.index.levels[0]]) + + # get share of residential and sevice floor area + sec_w = (area_tot / area_tot.groupby(["country"]).sum())["value"] + # get the total cost-energy-savings weight by sector area + tot = dE_and_cost.apply(lambda col: col * sec_w, axis=0).groupby(level=0).sum() + tot.set_index(pd.MultiIndex.from_product([list(tot.index), ["tot"]]), + inplace=True) + dE_and_cost = dE_and_cost.append(tot).unstack().stack() + + summed_area = pd.DataFrame(area_tot.groupby("country").sum()) + summed_area.set_index(pd.MultiIndex.from_product( + [list(summed_area.index), ["tot"]]), inplace=True) + area_tot = area_tot.append(summed_area).unstack().stack() + +# %% ******* (4) SAVE ************************************************ + + dE_and_cost.to_csv(snakemake.output.retro_cost) + area_tot.to_csv(snakemake.output.floor_area) + + + diff --git a/scripts/make_summary.py b/scripts/make_summary.py old mode 100755 new mode 100644 index d24064c2..4425ad5c --- a/scripts/make_summary.py +++ b/scripts/make_summary.py @@ -28,10 +28,13 @@ opt_name = {"Store": "e", "Line" : "s", "Transformer" : "s"} override_component_attrs = pypsa.descriptors.Dict({k : v.copy() for k,v in pypsa.components.component_attrs.items()}) override_component_attrs["Link"].loc["bus2"] = ["string",np.nan,np.nan,"2nd bus","Input (optional)"] override_component_attrs["Link"].loc["bus3"] = ["string",np.nan,np.nan,"3rd bus","Input (optional)"] +override_component_attrs["Link"].loc["bus4"] = ["string",np.nan,np.nan,"4th bus","Input (optional)"] override_component_attrs["Link"].loc["efficiency2"] = ["static or series","per unit",1.,"2nd bus efficiency","Input (optional)"] override_component_attrs["Link"].loc["efficiency3"] = ["static or series","per unit",1.,"3rd bus efficiency","Input (optional)"] +override_component_attrs["Link"].loc["efficiency4"] = ["static or series","per unit",1.,"4th bus efficiency","Input (optional)"] override_component_attrs["Link"].loc["p2"] = ["series","MW",0.,"2nd bus output","Output"] override_component_attrs["Link"].loc["p3"] = ["series","MW",0.,"3rd bus output","Output"] +override_component_attrs["Link"].loc["p4"] = ["series","MW",0.,"4th bus output","Output"] override_component_attrs["StorageUnit"].loc["p_dispatch"] = ["series","MW",0.,"Storage discharging.","Output"] override_component_attrs["StorageUnit"].loc["p_store"] = ["series","MW",0.,"Storage charging.","Output"] @@ -186,14 +189,6 @@ def calculate_costs(n,label,costs): costs.loc[marginal_costs_grouped.index,label] = marginal_costs_grouped - #add back in costs of links if there is a line volume limit - if label[1] != "opt": - costs.loc[("links-added","capital","transmission lines"),label] = ((costs_db.at['HVDC overhead', 'fixed']*n.links.length + costs_db.at['HVDC inverter pair', 'fixed'])*n.links.p_nom_opt)[n.links.carrier == "DC"].sum() - costs.loc[("lines-added","capital","transmission lines"),label] = costs_db.at["HVAC overhead", "fixed"]*(n.lines.length*n.lines.s_nom_opt).sum() - else: - costs.loc[("links-added","capital","transmission lines"),label] = (costs_db.at['HVDC inverter pair', 'fixed']*n.links.p_nom_opt)[n.links.carrier == "DC"].sum() - - #add back in all hydro #costs.loc[("storage_units","capital","hydro"),label] = (0.01)*2e6*n.storage_units.loc[n.storage_units.group=="hydro","p_nom"].sum() #costs.loc[("storage_units","capital","PHS"),label] = (0.01)*2e6*n.storage_units.loc[n.storage_units.group=="PHS","p_nom"].sum() @@ -530,7 +525,7 @@ outputs = ["nodal_costs", def make_summaries(networks_dict): - columns = pd.MultiIndex.from_tuples(networks_dict.keys(),names=["cluster","lv","opt", "co2_budget_name","planning_horizon"]) + columns = pd.MultiIndex.from_tuples(networks_dict.keys(),names=["cluster","lv","opt","planning_horizon"]) df = {} @@ -565,8 +560,8 @@ if __name__ == "__main__": from vresutils import Dict import yaml snakemake = Dict() - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) #overwrite some options snakemake.config["run"] = "test" @@ -579,21 +574,19 @@ if __name__ == "__main__": for item in outputs: snakemake.output[item] = snakemake.config['summary_dir'] + '/{name}/csvs/{item}.csv'.format(name=snakemake.config['run'],item=item) - networks_dict = {(cluster,lv,opt+sector_opt, co2_budget_name, planning_horizon) : - snakemake.config['results_dir'] + snakemake.config['run'] + '/postnetworks/elec_s{simpl}_{cluster}_lv{lv}_{opt}_{sector_opt}_{co2_budget_name}_{planning_horizon}.nc'\ + networks_dict = {(cluster, lv, opt+sector_opt, planning_horizon) : + snakemake.config['results_dir'] + snakemake.config['run'] + '/postnetworks/elec_s{simpl}_{cluster}_lv{lv}_{opt}_{sector_opt}_{planning_horizon}.nc'\ .format(simpl=simpl, cluster=cluster, opt=opt, lv=lv, sector_opt=sector_opt, - co2_budget_name=co2_budget_name, planning_horizon=planning_horizon)\ for simpl in snakemake.config['scenario']['simpl'] \ for cluster in snakemake.config['scenario']['clusters'] \ for opt in snakemake.config['scenario']['opts'] \ for sector_opt in snakemake.config['scenario']['sector_opts'] \ for lv in snakemake.config['scenario']['lv'] \ - for co2_budget_name in snakemake.config['scenario']['co2_budget_name'] \ for planning_horizon in snakemake.config['scenario']['planning_horizons']} print(networks_dict) @@ -602,7 +595,8 @@ if __name__ == "__main__": costs_db = prepare_costs(snakemake.input.costs, snakemake.config['costs']['USD2013_to_EUR2013'], snakemake.config['costs']['discountrate'], - Nyears) + Nyears, + snakemake.config['costs']['lifetime']) df = make_summaries(networks_dict) diff --git a/scripts/plot_network.py b/scripts/plot_network.py index 6672c431..cd419808 100644 --- a/scripts/plot_network.py +++ b/scripts/plot_network.py @@ -253,9 +253,7 @@ def plot_h2_map(network): elec = n.links.index[n.links.carrier == "H2 Electrolysis"] - bus_sizes = pd.Series(0., index=n.buses.index) - bus_sizes.loc[elec.str.replace(" H2 Electrolysis", "")] = \ - n.links.loc[elec, "p_nom_opt"].values / bus_size_factor + bus_sizes = n.links.loc[elec,"p_nom_opt"].groupby(n.links.loc[elec,"bus0"]).sum() / bus_size_factor # make a fake MultiIndex so that area is correct for legend bus_sizes.index = pd.MultiIndex.from_product( @@ -326,7 +324,7 @@ def plot_map_without(network): fig.set_size_inches(7, 6) # PDF has minimum width, so set these to zero - line_lower_threshold = 0. + line_lower_threshold = 200. line_upper_threshold = 1e4 linewidth_factor = 2e3 ac_color = "gray" @@ -345,19 +343,19 @@ def plot_map_without(network): line_widths = n.lines.s_nom_min link_widths = n.links.p_nom_min - line_widths[line_widths < line_upper_threshold] = 0. - link_widths[link_widths < line_upper_threshold] = 0. + line_widths[line_widths < line_lower_threshold] = 0. + link_widths[link_widths < line_lower_threshold] = 0. line_widths[line_widths > line_upper_threshold] = line_upper_threshold link_widths[link_widths > line_upper_threshold] = line_upper_threshold - n.plot(bus_sizes=10, - bus_colors="k", + n.plot(bus_colors="k", line_colors=ac_color, link_colors=dc_color, line_widths=line_widths / linewidth_factor, link_widths=link_widths / linewidth_factor, - ax=ax, boundaries=(-10, 30, 34, 70)) + ax=ax, boundaries=(-10, 30, 34, 70), + color_geomap={'ocean': 'lightblue', 'land': "palegoldenrod"}) handles = [] labels = [] diff --git a/scripts/plot_summary.py b/scripts/plot_summary.py old mode 100755 new mode 100644 index 37638f47..7f37159c --- a/scripts/plot_summary.py +++ b/scripts/plot_summary.py @@ -22,7 +22,7 @@ def rename_techs(label): "retrofitting" : "building retrofitting", "H2" : "hydrogen storage", "battery" : "battery storage", - "CCS" : "CCS"} + "CC" : "CC"} rename = {"solar" : "solar PV", "Sabatier" : "methanation", @@ -188,18 +188,18 @@ def plot_balances(): df = df/1e6 #remove trailing link ports - df.index = [i[:-1] if i[-1:] in ["0","1","2","3"] else i for i in df.index] + df.index = [i[:-1] if ((i != "co2") and (i[-1:] in ["0","1","2","3"])) else i for i in df.index] df = df.groupby(df.index.map(rename_techs)).sum() - to_drop = df.index[df.abs().max(axis=1) < snakemake.config['plotting']['energy_threshold']] + to_drop = df.index[df.abs().max(axis=1) < snakemake.config['plotting']['energy_threshold']/10] print("dropping") print(df.loc[to_drop]) df = df.drop(to_drop) - + print(df.sum()) if df.empty: @@ -209,7 +209,7 @@ def plot_balances(): new_columns = df.columns.sort_values() - + fig, ax = plt.subplots() fig.set_size_inches((12,8)) @@ -245,8 +245,8 @@ if __name__ == "__main__": from vresutils import Dict import yaml snakemake = Dict() - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) snakemake.input = Dict() snakemake.output = Dict() @@ -255,10 +255,11 @@ if __name__ == "__main__": snakemake.output[item] = snakemake.config['summary_dir'] + '/{name}/graphs/{item}.pdf'.format(name=snakemake.config['run'],item=item) snakemake.input["balances"] = snakemake.config['summary_dir'] + '/test/csvs/supply_energy.csv' snakemake.output["balances"] = snakemake.config['summary_dir'] + '/test/graphs/balances-energy.csv' - - n_header = 5 + + n_header = 4 + plot_costs() plot_energy() - - #plot_balances() + + plot_balances() diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 93198c4b..34a02e0f 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -30,10 +30,13 @@ from vresutils.costdata import annuity override_component_attrs = pypsa.descriptors.Dict({k : v.copy() for k,v in pypsa.components.component_attrs.items()}) override_component_attrs["Link"].loc["bus2"] = ["string",np.nan,np.nan,"2nd bus","Input (optional)"] override_component_attrs["Link"].loc["bus3"] = ["string",np.nan,np.nan,"3rd bus","Input (optional)"] +override_component_attrs["Link"].loc["bus4"] = ["string",np.nan,np.nan,"4th bus","Input (optional)"] override_component_attrs["Link"].loc["efficiency2"] = ["static or series","per unit",1.,"2nd bus efficiency","Input (optional)"] override_component_attrs["Link"].loc["efficiency3"] = ["static or series","per unit",1.,"3rd bus efficiency","Input (optional)"] +override_component_attrs["Link"].loc["efficiency4"] = ["static or series","per unit",1.,"4th bus efficiency","Input (optional)"] override_component_attrs["Link"].loc["p2"] = ["series","MW",0.,"2nd bus output","Output"] override_component_attrs["Link"].loc["p3"] = ["series","MW",0.,"3rd bus output","Output"] +override_component_attrs["Link"].loc["p4"] = ["series","MW",0.,"4th bus output","Output"] override_component_attrs["Link"].loc["build_year"] = ["integer","year",np.nan,"build year","Input (optional)"] override_component_attrs["Link"].loc["lifetime"] = ["float","years",np.nan,"lifetime","Input (optional)"] @@ -62,17 +65,20 @@ def update_wind_solar_costs(n,costs): #when distribution grid is inserted n.generators.loc[n.generators.carrier=='solar','capital_cost'] = costs.at['solar-utility', 'fixed'] - n.generators.loc[n.generators.carrier=='onwind','capital_cost'] = costs.at['onwind', 'fixed'] + costs.at['onwind-landcosts', 'fixed'] + n.generators.loc[n.generators.carrier=='onwind','capital_cost'] = costs.at['onwind', 'fixed'] #for offshore wind, need to calculated connection costs #assign clustered bus #map initial network -> simplified network - busmap_s = pd.read_hdf(snakemake.input.clustermaps, - key="/busmap_s") + busmap_s = pd.read_csv(snakemake.input.busmap_s, index_col=0).squeeze() + busmap_s.index = busmap_s.index.astype(str) + busmap_s = busmap_s.astype(str) #map simplified network -> clustered network - busmap = pd.read_hdf(snakemake.input.clustermaps, - key="/busmap") + busmap = pd.read_csv(snakemake.input.busmap, index_col=0).squeeze() + busmap.index = busmap.index.astype(str) + busmap = busmap.astype(str) + #map initial network -> clustered network clustermaps = busmap_s.map(busmap) #code adapted from pypsa-eur/scripts/add_electricity.py @@ -90,7 +96,16 @@ def update_wind_solar_costs(n,costs): #convert to aggregated clusters with weighting weight = ds['weight'].to_pandas() - connection_cost = (connection_cost*weight).groupby(clustermaps).sum()/weight.groupby(clustermaps).sum() + + #e.g. clusters == 37m means that VRE generators are left + #at clustering of simplified network, but that they are + #connected to 37-node network + if snakemake.wildcards.clusters[-1:] == "m": + genmap = busmap_s + else: + genmap = clustermaps + + connection_cost = (connection_cost*weight).groupby(genmap).sum()/weight.groupby(genmap).sum() capital_cost = (costs.at['offwind', 'fixed'] + costs.at[tech + '-station', 'fixed'] + @@ -140,16 +155,15 @@ def remove_elec_base_techs(n): """remove conventional generators (e.g. OCGT) and storage units (e.g. batteries and H2) from base electricity-only network, since they're added here differently using links """ - to_keep = {"generators" : snakemake.config["plotting"]["vre_techs"], - "storage_units" : snakemake.config["plotting"]["renewable_storage_techs"]} - n.carriers = n.carriers.loc[to_keep["generators"] + to_keep["storage_units"]] - - for components, techs in iteritems(to_keep): - df = getattr(n,components) - to_remove = df.carrier.value_counts().index^techs - print("removing {} with carrier {}".format(components,to_remove)) - df.drop(df.index[df.carrier.isin(to_remove)],inplace=True) + for c in n.iterate_components(snakemake.config["pypsa_eur"]): + to_keep = snakemake.config["pypsa_eur"][c.name] + to_remove = pd.Index(c.df.carrier.unique())^to_keep + print("Removing",c.list_name,"with carrier",to_remove) + names = c.df.index[c.df.carrier.isin(to_remove)] + print(names) + n.mremove(c.name, names) + n.carriers.drop(to_remove, inplace=True, errors="ignore") def add_co2_tracking(n): @@ -179,12 +193,10 @@ def add_co2_tracking(n): location="EU", carrier="co2 stored") - #TODO move cost to data/costs.csv - #TODO move maximum somewhere more transparent n.madd("Store",["co2 stored"], - e_nom_extendable = True, - e_nom_max=2e8, - capital_cost=20., + e_nom_extendable=True, + e_nom_max=options['co2_sequestration_potential']*1e6, + capital_cost=options['co2_sequestration_cost'], carrier="co2 stored", bus="co2 stored") @@ -196,17 +208,26 @@ def add_co2_tracking(n): efficiency=1., p_nom_extendable=True) - if options['dac']: - #direct air capture consumes electricity to take CO2 from the air to the underground store - #TODO do with cost from Breyer - later use elec and heat and capital cost - n.madd("Link",["DAC"], - bus0="co2 atmosphere", - bus1="co2 stored", - carrier="DAC", - marginal_cost=75., - efficiency=1., - p_nom_extendable=True, - lifetime=costs.at['DAC','lifetime']) +def add_dac(n): + + heat_buses = n.buses.index[n.buses.carrier.isin(["urban central heat", + "services urban decentral heat"])] + locations = n.buses.location[heat_buses] + + n.madd("Link", + locations, + suffix=" DAC", + bus0="co2 atmosphere", + bus1="co2 stored", + bus2=locations.values, + bus3=heat_buses, + carrier="DAC", + capital_cost=costs.at['direct air capture','fixed'], + efficiency=1., + efficiency2=-(costs.at['direct air capture','electricity-input'] + costs.at['direct air capture','compression-electricity-input']), + efficiency3=-(costs.at['direct air capture','heat-input'] - costs.at['direct air capture','compression-heat-output']), + p_nom_extendable=True, + lifetime=costs.at['direct air capture','lifetime']) def add_co2limit(n, Nyears=1.,limit=0.): @@ -417,12 +438,10 @@ def prepare_data(network): if use == "space": heat_demand_shape = daily_space_heat_demand*intraday_year_profile - factor = options['space_heating_fraction'] else: heat_demand_shape = intraday_year_profile - factor = 1. - heat_demand["{} {}".format(sector,use)] = factor*(heat_demand_shape/heat_demand_shape.sum()).multiply(nodal_energy_totals["total {} {}".format(sector,use)])*1e6 + heat_demand["{} {}".format(sector,use)] = (heat_demand_shape/heat_demand_shape.sum()).multiply(nodal_energy_totals["total {} {}".format(sector,use)])*1e6 electric_heat_supply["{} {}".format(sector,use)] = (heat_demand_shape/heat_demand_shape.sum()).multiply(nodal_energy_totals["electricity {} {}".format(sector,use)])*1e6 heat_demand = pd.concat(heat_demand,axis=1) @@ -439,8 +458,8 @@ def prepare_data(network): ## Get overall demand curve for all vehicles - dir_name = "data/emobility/" - traffic = pd.read_csv(os.path.join(dir_name,"KFZ__count"),skiprows=2)["count"] + traffic = pd.read_csv(os.path.join(snakemake.input.traffic_data,"KFZ__count"), + skiprows=2)["count"] #Generate profiles transport_shape = generate_periodic_profiles(dt_index=network.snapshots.tz_localize("UTC"), @@ -494,7 +513,8 @@ def prepare_data(network): ## derive plugged-in availability for PKW's (cars) - traffic = pd.read_csv(os.path.join(dir_name,"Pkw__count"),skiprows=2)["count"] + traffic = pd.read_csv(os.path.join(snakemake.input.traffic_data,"Pkw__count"), + skiprows=2)["count"] avail_max = 0.95 @@ -508,7 +528,7 @@ def prepare_data(network): dsm_week = np.zeros((24*7,)) - dsm_week[(np.arange(0,7,1)*24+options['dsm_restriction_time'])] = options['dsm_restriction_value'] + dsm_week[(np.arange(0,7,1)*24+options['bev_dsm_restriction_time'])] = options['bev_dsm_restriction_value'] dsm_profile = generate_periodic_profiles(dt_index=network.snapshots.tz_localize("UTC"), nodes=pop_layout.index, @@ -528,7 +548,7 @@ def prepare_data(network): -def prepare_costs(cost_file, USD_to_EUR, discount_rate, Nyears): +def prepare_costs(cost_file, USD_to_EUR, discount_rate, Nyears, lifetime): #set all asset costs and other parameters costs = pd.read_csv(cost_file,index_col=list(range(2))).sort_index() @@ -546,7 +566,7 @@ def prepare_costs(cost_file, USD_to_EUR, discount_rate, Nyears): "efficiency" : 1, "fuel" : 0, "investment" : 0, - "lifetime" : 25 + "lifetime" : lifetime }) costs["fixed"] = [(annuity(v["lifetime"],v["discount rate"])+v["FOM"]/100.)*v["investment"]*Nyears for i,v in costs.iterrows()] @@ -655,7 +675,9 @@ def insert_electricity_distribution_grid(network): lifetime=costs.at['electricity distribution grid','lifetime'], capital_cost=costs.at['electricity distribution grid','fixed']*snakemake.config["sector"]['electricity_distribution_grid_cost_factor']) - loads = network.loads.index[network.loads.carrier=="electricity"] + + #this catches regular electricity load and "industry electricity" + loads = network.loads.index[network.loads.carrier.str.contains("electricity")] network.loads.loc[loads,"bus"] += " low voltage" bevs = network.links.index[network.links.carrier == "BEV charger"] @@ -667,22 +689,36 @@ def insert_electricity_distribution_grid(network): hps = network.links.index[network.links.carrier.str.contains("heat pump")] network.links.loc[hps,"bus0"] += " low voltage" + rh = network.links.index[network.links.carrier.str.contains("resistive heater")] + network.links.loc[rh, "bus0"] += " low voltage" + + mchp = network.links.index[network.links.carrier.str.contains("micro gas")] + network.links.loc[mchp, "bus1"] += " low voltage" + #set existing solar to cost of utility cost rather the 50-50 rooftop-utility solar = network.generators.index[network.generators.carrier == "solar"] - network.generators.loc[solar,"capital_cost"] = costs.at['solar-utility','fixed'] + network.generators.loc[solar, "capital_cost"] = costs.at['solar-utility', + 'fixed'] + if snakemake.wildcards.clusters[-1:] == "m": + pop_solar = simplified_pop_layout.total.rename(index = lambda x: x + " solar") + else: + pop_solar = pop_layout.total.rename(index = lambda x: x + " solar") - network.madd("Generator", solar, + # add max solar rooftop potential assuming 0.1 kW/m2 and 10 m2/person, + #i.e. 1 kW/person (population data is in thousands of people) so we get MW + potential = 0.1*10*pop_solar + + network.madd("Generator", + solar, suffix=" rooftop", - bus=network.generators.loc[solar,"bus"] + " low voltage", + bus=network.generators.loc[solar, "bus"] + " low voltage", carrier="solar rooftop", p_nom_extendable=True, - p_nom_max=network.generators.loc[solar,"p_nom_max"], + p_nom_max=potential, marginal_cost=network.generators.loc[solar, 'marginal_cost'], - capital_cost=costs.at['solar-rooftop','fixed'], + capital_cost=costs.at['solar-rooftop', 'fixed'], efficiency=network.generators.loc[solar, 'efficiency'], - p_max_pu=network.generators_t.p_max_pu[solar], - lifetime=costs.at['solar-rooftop','lifetime']) - + p_max_pu=network.generators_t.p_max_pu[solar]) network.add("Carrier","home battery") @@ -721,6 +757,20 @@ def insert_electricity_distribution_grid(network): p_nom_extendable=True, lifetime=costs.at['battery inverter','lifetime']) + +def insert_gas_distribution_costs(network): + f_costs = options['gas_distribution_grid_cost_factor'] + print("Inserting gas distribution grid with investment cost\ + factor of", f_costs) + + # gas boilers + gas_b = network.links[network.links.carrier.str.contains("gas boiler") & + (~network.links.carrier.str.contains("urban central"))].index + network.links.loc[gas_b, "capital_cost"] += costs.loc['electricity distribution grid']["fixed"] * f_costs + # micro CHPs + mchp = network.links.index[network.links.carrier.str.contains("micro gas")] + network.links.loc[mchp, "capital_cost"] += costs.loc['electricity distribution grid']["fixed"] * f_costs + def add_electricity_grid_connection(network): carriers = ["onwind","solar"] @@ -761,21 +811,43 @@ def add_storage(network): capital_cost=costs.at["fuel cell","fixed"]*costs.at["fuel cell","efficiency"], #NB: fixed cost is per MWel lifetime=costs.at['fuel cell','lifetime']) + cavern_nodes = pd.DataFrame() + if options['hydrogen_underground_storage']: - h2_capital_cost = costs.at["gas storage","fixed"] - #TODO: change gas storage to hydrogen underground storage when cost database is updated - #h2_capital_cost = costs.at["hydrogen underground storage","fixed"] - else: - h2_capital_cost = costs.at["hydrogen storage","fixed"] + h2_salt_cavern_potential = pd.read_csv(snakemake.input.h2_cavern, + index_col=0,squeeze=True) + h2_cavern_ct = h2_salt_cavern_potential[~h2_salt_cavern_potential.isna()] + cavern_nodes = pop_layout[pop_layout.ct.isin(h2_cavern_ct.index)] + + h2_capital_cost = costs.at["hydrogen storage underground", "fixed"] + + # assumptions: weight storage potential in a country by population + # TODO: fix with real geographic potentials + #convert TWh to MWh with 1e6 + h2_pot = h2_cavern_ct.loc[cavern_nodes.ct] + h2_pot.index = cavern_nodes.index + h2_pot = h2_pot * cavern_nodes.fraction * 1e6 + + network.madd("Store", + cavern_nodes.index + " H2 Store", + bus=cavern_nodes.index + " H2", + e_nom_extendable=True, + e_nom_max=h2_pot.values, + e_cyclic=True, + carrier="H2 Store", + capital_cost=h2_capital_cost) + + # hydrogen stored overground + h2_capital_cost = costs.at["hydrogen storage tank", "fixed"] + nodes_overground = nodes ^ cavern_nodes.index network.madd("Store", - nodes + " H2 Store", - bus=nodes + " H2", + nodes_overground + " H2 Store", + bus=nodes_overground + " H2", e_nom_extendable=True, e_cyclic=True, carrier="H2 Store", - capital_cost=h2_capital_cost, - lifetime=costs.at['gas storage','lifetime']) + capital_cost=h2_capital_cost) h2_links = pd.DataFrame(columns=["bus0","bus1","length"]) prefix = "H2 pipeline " @@ -873,18 +945,18 @@ def add_storage(network): if options['SMR']: network.madd("Link", - nodes + " SMR CCS", + nodes + " SMR CC", bus0=["EU gas"]*len(nodes), bus1=nodes+" H2", bus2="co2 atmosphere", bus3="co2 stored", p_nom_extendable=True, - carrier="SMR CCS", - efficiency=costs.at["SMR CCS","efficiency"], - efficiency2=costs.at['gas','CO2 intensity']*(1-options["ccs_fraction"]), - efficiency3=costs.at['gas','CO2 intensity']*options["ccs_fraction"], - capital_cost=costs.at["SMR CCS","fixed"], - lifetime=costs.at['SMR CCS','lifetime']) + carrier="SMR CC", + efficiency=costs.at["SMR CC","efficiency"], + efficiency2=costs.at['gas','CO2 intensity']*(1-options["cc_fraction"]), + efficiency3=costs.at['gas','CO2 intensity']*options["cc_fraction"], + capital_cost=costs.at["SMR CC","fixed"], + lifetime=costs.at['SMR CC','lifetime']) network.madd("Link", nodes + " SMR", @@ -899,78 +971,105 @@ def add_storage(network): lifetime=costs.at['SMR','lifetime']) -def add_transport(network): - print("adding transport") +def add_land_transport(network): + + print("adding land transport") + + fuel_cell_share = get_parameter(options["land_transport_fuel_cell_share"]) + electric_share = get_parameter(options["land_transport_electric_share"]) + fossil_share = 1 - fuel_cell_share - electric_share + + print("shares of FCEV, EV and ICEV are", + fuel_cell_share, + electric_share, + fossil_share) + + if fossil_share < 0: + print("Error, more FCEV and EV share than 1.") + sys.exit() + nodes = pop_layout.index - network.add("Carrier","Li ion") - network.madd("Bus", - nodes, - location=nodes, - suffix=" EV battery", - carrier="Li ion") + if electric_share > 0: - network.madd("Load", - nodes, - suffix=" transport", - bus=nodes + " EV battery", - carrier="transport", - p_set=(1-options['transport_fuel_cell_share'])*(transport[nodes]+shift_df(transport[nodes],1)+shift_df(transport[nodes],2))/3.) + network.add("Carrier","Li ion") - p_nom = nodal_transport_data["number cars"]*0.011*(1-options['transport_fuel_cell_share']) #3-phase charger with 11 kW * x% of time grid-connected - - network.madd("Link", - nodes, - suffix= " BEV charger", - bus0=nodes, - bus1=nodes + " EV battery", - p_nom=p_nom, - carrier="BEV charger", - p_max_pu=avail_profile[nodes], - efficiency=0.9, #[B] - #These were set non-zero to find LU infeasibility when availability = 0.25 - #p_nom_extendable=True, - #p_nom_min=p_nom, - #capital_cost=1e6, #i.e. so high it only gets built where necessary - ) - - if options["v2g"]: - - network.madd("Link", + network.madd("Bus", nodes, - suffix=" V2G", - bus1=nodes, - bus0=nodes + " EV battery", - p_nom=p_nom, - carrier="V2G", - p_max_pu=avail_profile[nodes], - efficiency=0.9) #[B] - - - - if options["bev"]: - - network.madd("Store", - nodes, - suffix=" battery storage", - bus=nodes + " EV battery", - carrier="battery storage", - e_cyclic=True, - e_nom=nodal_transport_data["number cars"]*0.05*options["bev_availability"]*(1-options['transport_fuel_cell_share']), #50 kWh battery http://www.zeit.de/mobilitaet/2014-10/auto-fahrzeug-bestand - e_max_pu=1, - e_min_pu=dsm_profile[nodes]) - - - if options['transport_fuel_cell_share'] != 0: + location=nodes, + suffix=" EV battery", + carrier="Li ion") network.madd("Load", nodes, - suffix=" transport fuel cell", - bus=nodes + " H2", - carrier="transport fuel cell", - p_set=options['transport_fuel_cell_share']/costs.at["fuel cell","efficiency"]*transport[nodes]) + suffix=" land transport EV", + bus=nodes + " EV battery", + carrier="land transport EV", + p_set=electric_share*(transport[nodes]+shift_df(transport[nodes],1)+shift_df(transport[nodes],2))/3.) + p_nom = nodal_transport_data["number cars"]*0.011*electric_share #3-phase charger with 11 kW * x% of time grid-connected + + network.madd("Link", + nodes, + suffix= " BEV charger", + bus0=nodes, + bus1=nodes + " EV battery", + p_nom=p_nom, + carrier="BEV charger", + p_max_pu=avail_profile[nodes], + efficiency=0.9, #[B] + #These were set non-zero to find LU infeasibility when availability = 0.25 + #p_nom_extendable=True, + #p_nom_min=p_nom, + #capital_cost=1e6, #i.e. so high it only gets built where necessary + ) + + if options["v2g"]: + + network.madd("Link", + nodes, + suffix=" V2G", + bus1=nodes, + bus0=nodes + " EV battery", + p_nom=p_nom, + carrier="V2G", + p_max_pu=avail_profile[nodes], + efficiency=0.9) #[B] + + + + if options["bev_dsm"]: + + network.madd("Store", + nodes, + suffix=" battery storage", + bus=nodes + " EV battery", + carrier="battery storage", + e_cyclic=True, + e_nom=nodal_transport_data["number cars"]*0.05*options["bev_availability"]*electric_share, #50 kWh battery http://www.zeit.de/mobilitaet/2014-10/auto-fahrzeug-bestand + e_max_pu=1, + e_min_pu=dsm_profile[nodes]) + + + if fuel_cell_share > 0: + + network.madd("Load", + nodes, + suffix=" land transport fuel cell", + bus=nodes + " H2", + carrier="land transport fuel cell", + p_set=fuel_cell_share/options['transport_fuel_cell_efficiency']*transport[nodes]) + + + if fossil_share > 0: + + network.madd("Load", + nodes, + suffix=" land transport fossil", + bus="Fischer-Tropsch", + carrier="land transport fossil", + p_set=fossil_share/options['transport_internal_combustion_efficiency']*transport[nodes]) @@ -986,7 +1085,18 @@ def add_heat(network): urban_fraction = options['central_fraction']*pop_layout["urban"]/(pop_layout[["urban","rural"]].sum(axis=1)) - for name in ["residential rural","services rural","residential urban decentral","services urban decentral","urban central"]: + # building retrofitting, exogenously reduce space heat demand + if options["retrofitting"]["retro_exogen"]: + dE = get_parameter(options["retrofitting"]["dE"]) + print("retrofitting exogenously, assumed space heat reduction of ", + dE) + for sector in sectors: + heat_demand[sector + " space"] = (1-dE)*heat_demand[sector + " space"] + + heat_systems = ["residential rural", "services rural", + "residential urban decentral","services urban decentral", + "urban central"] + for name in heat_systems: name_type = "central" if name == "urban central" else "decentral" @@ -1009,6 +1119,7 @@ def add_heat(network): if sector in name: heat_load = heat_demand[[sector + " water",sector + " space"]].groupby(level=1,axis=1).sum()[nodes[name]].multiply(factor) + if name == "urban central": heat_load = heat_demand.groupby(level=1,axis=1).sum()[nodes[name]].multiply(urban_fraction[nodes[name]]*(1+options['district_heating_loss'])) @@ -1124,67 +1235,40 @@ def add_heat(network): if name == "urban central": #add gas CHP; biomass CHP is added in biomass section network.madd("Link", - nodes[name] + " urban central gas CHP electric", + nodes[name] + " urban central gas CHP", bus0="EU gas", bus1=nodes[name], - bus2="co2 atmosphere", - carrier="urban central gas CHP electric", + bus2=nodes[name] + " urban central heat", + bus3="co2 atmosphere", + carrier="urban central gas CHP", p_nom_extendable=True, capital_cost=costs.at['central gas CHP','fixed']*costs.at['central gas CHP','efficiency'], marginal_cost=costs.at['central gas CHP','VOM'], efficiency=costs.at['central gas CHP','efficiency'], - efficiency2=costs.at['gas','CO2 intensity'], - c_b=costs.at['central gas CHP','c_b'], - c_v=costs.at['central gas CHP','c_v'], - p_nom_ratio=costs.at['central gas CHP','p_nom_ratio'], + efficiency2=costs.at['central gas CHP','efficiency']/costs.at['central gas CHP','c_b'], + efficiency3=costs.at['gas','CO2 intensity'], lifetime=costs.at['central gas CHP','lifetime']) network.madd("Link", - nodes[name] + " urban central gas CHP heat", - bus0="EU gas", - bus1=nodes[name] + " urban central heat", - bus2="co2 atmosphere", - carrier="urban central gas CHP heat", - p_nom_extendable=True, - marginal_cost=costs.at['central gas CHP','VOM'], - efficiency=costs.at['central gas CHP','efficiency']/costs.at['central gas CHP','c_v'], - efficiency2=costs.at['gas','CO2 intensity'], - lifetime=costs.at['central gas CHP','lifetime']) - - network.madd("Link", - nodes[name] + " urban central gas CHP CCS electric", + nodes[name] + " urban central gas CHP CC", bus0="EU gas", bus1=nodes[name], - bus2="co2 atmosphere", - bus3="co2 stored", - carrier="urban central gas CHP CCS electric", + bus2=nodes[name] + " urban central heat", + bus3="co2 atmosphere", + bus4="co2 stored", + carrier="urban central gas CHP CC", p_nom_extendable=True, - capital_cost=costs.at['central gas CHP CCS','fixed']*costs.at['central gas CHP CCS','efficiency'], - marginal_cost=costs.at['central gas CHP CCS','VOM'], - efficiency=costs.at['central gas CHP CCS','efficiency'], - efficiency2=costs.at['gas','CO2 intensity']*(1-options["ccs_fraction"]), - efficiency3=costs.at['gas','CO2 intensity']*options["ccs_fraction"], - c_b=costs.at['central gas CHP CCS','c_b'], - c_v=costs.at['central gas CHP CCS','c_v'], - p_nom_ratio=costs.at['central gas CHP CCS','p_nom_ratio'], - lifetime=costs.at['central gas CHP CCS','lifetime']) - - network.madd("Link", - nodes[name] + " urban central gas CHP CCS heat", - bus0="EU gas", - bus1=nodes[name] + " urban central heat", - bus2="co2 atmosphere", - bus3="co2 stored", - carrier="urban central gas CHP CCS heat", - p_nom_extendable=True, - marginal_cost=costs.at['central gas CHP CCS','VOM'], - efficiency=costs.at['central gas CHP CCS','efficiency']/costs.at['central gas CHP CCS','c_v'], - efficiency2=costs.at['gas','CO2 intensity']*(1-options["ccs_fraction"]), - efficiency3=costs.at['gas','CO2 intensity']*options["ccs_fraction"], - lifetime=costs.at['central gas CHP CCS','lifetime']) + capital_cost=costs.at['central gas CHP','fixed']*costs.at['central gas CHP','efficiency'] + costs.at['biomass CHP capture','fixed']*costs.at['gas','CO2 intensity'], + marginal_cost=costs.at['central gas CHP','VOM'], + efficiency=costs.at['central gas CHP','efficiency'] - costs.at['gas','CO2 intensity']*(costs.at['biomass CHP capture','electricity-input'] + costs.at['biomass CHP capture','compression-electricity-input']), + efficiency2=costs.at['central gas CHP','efficiency']/costs.at['central gas CHP','c_b'] + costs.at['gas','CO2 intensity']*(costs.at['biomass CHP capture','heat-output'] + costs.at['biomass CHP capture','compression-heat-output'] - costs.at['biomass CHP capture','heat-output']), + efficiency3=costs.at['gas','CO2 intensity']*(1-costs.at['biomass CHP capture','capture_rate']), + efficiency4=costs.at['gas','CO2 intensity']*costs.at['biomass CHP capture','capture_rate'], + lifetime=costs.at['central gas CHP','lifetime']) else: - network.madd("Link", + if options["micro_chp"]: + network.madd("Link", nodes[name] + " " + name + " micro gas CHP", p_nom_extendable=True, bus0="EU gas", @@ -1199,64 +1283,100 @@ def add_heat(network): lifetime=costs.at['micro CHP','lifetime']) - #NB: this currently doesn't work for pypsa-eur model - if options['retrofitting']: + if options['retrofitting']['retro_endogen']: - retro_nodes = pd.Index(["DE"]) + print("adding retrofitting endogenously") - space_heat_demand = space_heat_demand[retro_nodes] + # resample heat demand temporal 'heat_demand_r' depending on in config + # specified temporal resolution, to not overestimate retrofitting + hours = list(filter(re.compile(r'^\d+h$', re.IGNORECASE).search, opts)) + if len(hours)==0: + hours = [n.snapshots[1] - n.snapshots[0]] + heat_demand_r = heat_demand.resample(hours[0]).mean() - square_metres = population[retro_nodes]/population['DE']*5.7e9 #HPI 3.4e9m^2 for DE res, 2.3e9m^2 for tert https://doi.org/10.1016/j.rser.2013.09.012 - - space_peak = space_heat_demand.max() - - space_pu = space_heat_demand.divide(space_peak) + # retrofitting data 'retro_data' with 'costs' [EUR/m^2] and heat + # demand 'dE' [per unit of original heat demand] for each country and + # different retrofitting strengths [additional insulation thickness in m] + retro_data = pd.read_csv(snakemake.input.retro_cost_energy, + index_col=[0, 1], skipinitialspace=True, + header=[0, 1]) + # heated floor area [10^6 * m^2] per country + floor_area = pd.read_csv(snakemake.input.floor_area, index_col=[0, 1]) network.add("Carrier", "retrofitting") - network.madd('Generator', - retro_nodes, - suffix=' retrofitting I', - bus=retro_nodes+' heat', - carrier="retrofitting", - p_nom_extendable=True, - p_nom_max=options['retroI-fraction']*space_peak*(1-urban_fraction), - p_max_pu=space_pu, - p_min_pu=space_pu, - capital_cost=options['retrofitting-cost_factor']*costs.at['retrofitting I','fixed']*square_metres/(options['retroI-fraction']*space_peak)) + # share of space heat demand 'w_space' of total heat demand + w_space = {} + for sector in sectors: + w_space[sector] = heat_demand_r[sector + " space"] / \ + (heat_demand_r[sector + " space"] + heat_demand_r[sector + " water"]) + w_space["tot"] = ((heat_demand_r["services space"] + + heat_demand_r["residential space"]) / + heat_demand_r.groupby(level=[1], axis=1).sum()) - network.madd('Generator', - retro_nodes, - suffix=' retrofitting II', - bus=retro_nodes+' heat', - carrier="retrofitting", - p_nom_extendable=True, - p_nom_max=options['retroII-fraction']*space_peak*(1-urban_fraction), - p_max_pu=space_pu, - p_min_pu=space_pu, - capital_cost=options['retrofitting-cost_factor']*costs.at['retrofitting II','fixed']*square_metres/(options['retroII-fraction']*space_peak)) - network.madd('Generator', - retro_nodes, - suffix=' urban retrofitting I', - bus=retro_nodes+' urban heat', - carrier="retrofitting", - p_nom_extendable=True, - p_nom_max=options['retroI-fraction']*space_peak*urban_fraction, - p_max_pu=space_pu, - p_min_pu=space_pu, - capital_cost=options['retrofitting-cost_factor']*costs.at['retrofitting I','fixed']*square_metres/(options['retroI-fraction']*space_peak)) + for name in network.loads[network.loads.carrier.isin([x + " heat" for x in heat_systems])].index: + + node = network.buses.loc[name, "location"] + ct = pop_layout.loc[node, "ct"] + + # weighting 'f' depending on the size of the population at the node + f = urban_fraction[node] if "urban" in name else (1-urban_fraction[node]) + if f == 0: + continue + # get sector name ("residential"/"services"/or both "tot" for urban central) + sec = [x if x in name else "tot" for x in sectors][0] + + # get floor aread at node and region (urban/rural) in m^2 + floor_area_node = ((pop_layout.loc[node].fraction + * floor_area.loc[ct, "value"] * 10**6).loc[sec] * f) + # total heat demand at node [MWh] + demand = (network.loads_t.p_set[name].resample(hours[0]) + .mean()) + + # space heat demand at node [MWh] + space_heat_demand = demand * w_space[sec][node] + # normed time profile of space heat demand 'space_pu' (values between 0-1), + # p_max_pu/p_min_pu of retrofitting generators + space_pu = (space_heat_demand / space_heat_demand.max()).to_frame(name=node) + + # minimum heat demand 'dE' after retrofitting in units of original heat demand (values between 0-1) + dE = retro_data.loc[(ct, sec), ("dE")] + # get addtional energy savings 'dE_diff' between the different retrofitting strengths/generators at one node + dE_diff = abs(dE.diff()).fillna(1-dE.iloc[0]) + # convert costs Euro/m^2 -> Euro/MWh + capital_cost = retro_data.loc[(ct, sec), ("cost")] * floor_area_node / \ + ((1 - dE) * space_heat_demand.max()) + # number of possible retrofitting measures 'strengths' (set in list at config.yaml 'l_strength') + # given in additional insulation thickness [m] + # for each measure, a retrofitting generator is added at the node + strengths = retro_data.columns.levels[1] + + # check that ambitious retrofitting has higher costs per MWh than moderate retrofitting + if (capital_cost.diff() < 0).sum(): + print( + "warning, costs are not linear for ", ct, " ", sec) + s = capital_cost[(capital_cost.diff() < 0)].index + strengths = strengths.drop(s) + + # reindex normed time profile of space heat demand back to hourly resolution + space_pu = (space_pu.reindex(index=heat_demand.index) + .fillna(method="ffill")) + + # add for each retrofitting strength a generator with heat generation profile following the profile of the heat demand + for strength in strengths: + network.madd('Generator', + [node], + suffix=' retrofitting ' + strength + " " + name[6::], + bus=name, + carrier="retrofitting", + p_nom_extendable=True, + p_nom_max=dE_diff[strength] * space_heat_demand.max(), # maximum energy savings for this renovation strength + p_max_pu=space_pu, + p_min_pu=space_pu, + country=ct, + capital_cost=capital_cost[strength] * options['retrofitting']['cost_factor']) - network.madd('Generator', - retro_nodes, - suffix=' urban retrofitting II', - bus=retro_nodes+' urban heat', - carrier="retrofitting", - p_nom_extendable=True, - p_nom_max=options['retroII-fraction']*space_peak*urban_fraction, - p_max_pu=space_pu, - p_min_pu=space_pu, - capital_cost=options['retrofitting-cost_factor']*costs.at['retrofitting II','fixed']*square_metres/(options['retroII-fraction']*space_peak)) def create_nodes_for_heat_sector(): @@ -1336,61 +1456,35 @@ def add_biomass(network): urban_central = urban_central.str[:-len(" urban central heat")] network.madd("Link", - urban_central + " urban central solid biomass CHP electric", + urban_central + " urban central solid biomass CHP", bus0="EU solid biomass", bus1=urban_central, - carrier="urban central solid biomass CHP electric", + bus2=urban_central + " urban central heat", + carrier="urban central solid biomass CHP", p_nom_extendable=True, capital_cost=costs.at['central solid biomass CHP','fixed']*costs.at['central solid biomass CHP','efficiency'], marginal_cost=costs.at['central solid biomass CHP','VOM'], efficiency=costs.at['central solid biomass CHP','efficiency'], - c_b=costs.at['central solid biomass CHP','c_b'], - c_v=costs.at['central solid biomass CHP','c_v'], - p_nom_ratio=costs.at['central solid biomass CHP','p_nom_ratio'], - lifetime=costs.at['central solid biomass CHP','lifetime']) - - - network.madd("Link", - urban_central + " urban central solid biomass CHP heat", - bus0="EU solid biomass", - bus1=urban_central + " urban central heat", - carrier="urban central solid biomass CHP heat", - p_nom_extendable=True, - marginal_cost=costs.at['central solid biomass CHP','VOM'], - efficiency=costs.at['central solid biomass CHP','efficiency']/costs.at['central solid biomass CHP','c_v'], + efficiency2=costs.at['central solid biomass CHP','efficiency-heat'], lifetime=costs.at['central solid biomass CHP','lifetime']) network.madd("Link", - urban_central + " urban central solid biomass CHP CCS electric", + urban_central + " urban central solid biomass CHP CC", bus0="EU solid biomass", bus1=urban_central, - bus2="co2 atmosphere", - bus3="co2 stored", - carrier="urban central solid biomass CHP CCS electric", + bus2=urban_central + " urban central heat", + bus3="co2 atmosphere", + bus4="co2 stored", + carrier="urban central solid biomass CHP CC", p_nom_extendable=True, - capital_cost=costs.at['central solid biomass CHP CCS','fixed']*costs.at['central solid biomass CHP CCS','efficiency'], - marginal_cost=costs.at['central solid biomass CHP CCS','VOM'], - efficiency=costs.at['central solid biomass CHP CCS','efficiency'], - efficiency2=-costs.at['solid biomass','CO2 intensity']*options["ccs_fraction"], - efficiency3=costs.at['solid biomass','CO2 intensity']*options["ccs_fraction"], - c_b=costs.at['central solid biomass CHP','c_b'], - c_v=costs.at['central solid biomass CHP','c_v'], - p_nom_ratio=costs.at['central solid biomass CHP','p_nom_ratio'], - lifetime=costs.at['central solid biomass CHP CCS','lifetime']) + capital_cost=costs.at['central solid biomass CHP','fixed']*costs.at['central solid biomass CHP','efficiency'] + costs.at['biomass CHP capture','fixed']*costs.at['solid biomass','CO2 intensity'], + marginal_cost=costs.at['central solid biomass CHP','VOM'], + efficiency=costs.at['central solid biomass CHP','efficiency'] - costs.at['solid biomass','CO2 intensity']*(costs.at['biomass CHP capture','electricity-input'] + costs.at['biomass CHP capture','compression-electricity-input']), + efficiency2=costs.at['central solid biomass CHP','efficiency-heat'] + costs.at['solid biomass','CO2 intensity']*(costs.at['biomass CHP capture','heat-output'] + costs.at['biomass CHP capture','compression-heat-output'] - costs.at['biomass CHP capture','heat-output']), + efficiency3=-costs.at['solid biomass','CO2 intensity']*costs.at['biomass CHP capture','capture_rate'], + efficiency4=costs.at['solid biomass','CO2 intensity']*costs.at['biomass CHP capture','capture_rate'], + lifetime=costs.at['central solid biomass CHP','lifetime']) - network.madd("Link", - urban_central + " urban central solid biomass CHP CCS heat", - bus0="EU solid biomass", - bus1=urban_central + " urban central heat", - bus2="co2 atmosphere", - bus3="co2 stored", - carrier="urban central solid biomass CHP CCS heat", - p_nom_extendable=True, - marginal_cost=costs.at['central solid biomass CHP CCS','VOM'], - efficiency=costs.at['central solid biomass CHP CCS','efficiency']/costs.at['central solid biomass CHP CCS','c_v'], - efficiency2=-costs.at['solid biomass','CO2 intensity']*options["ccs_fraction"], - efficiency3=costs.at['solid biomass','CO2 intensity']*options["ccs_fraction"], - lifetime=costs.at['central solid biomass CHP CCS','lifetime']) def add_industry(network): @@ -1426,18 +1520,18 @@ def add_industry(network): efficiency=1.) network.madd("Link", - ["solid biomass for industry CCS"], + ["solid biomass for industry CC"], bus0="EU solid biomass", bus1="solid biomass for industry", bus2="co2 atmosphere", bus3="co2 stored", - carrier="solid biomass for industry CCS", + carrier="solid biomass for industry CC", p_nom_extendable=True, - capital_cost=costs.at["industry CCS","fixed"]*costs.at['solid biomass','CO2 intensity']*8760, #8760 converts EUR/(tCO2/a) to EUR/(tCO2/h) + capital_cost=costs.at["cement capture","fixed"]*costs.at['solid biomass','CO2 intensity'], efficiency=0.9, - efficiency2=-costs.at['solid biomass','CO2 intensity']*options["ccs_fraction"], - efficiency3=costs.at['solid biomass','CO2 intensity']*options["ccs_fraction"], - lifetime=costs.at['industry CCS','lifetime']) + efficiency2=-costs.at['solid biomass','CO2 intensity']*costs.at["cement capture","capture_rate"], + efficiency3=costs.at['solid biomass','CO2 intensity']*costs.at["cement capture","capture_rate"], + lifetime=costs.at['cement capture','lifetime']) network.madd("Bus", @@ -1462,18 +1556,18 @@ def add_industry(network): efficiency2=costs.at['gas','CO2 intensity']) network.madd("Link", - ["gas for industry CCS"], + ["gas for industry CC"], bus0="EU gas", bus1="gas for industry", bus2="co2 atmosphere", bus3="co2 stored", - carrier="gas for industry CCS", + carrier="gas for industry CC", p_nom_extendable=True, - capital_cost=costs.at["industry CCS","fixed"]*costs.at['gas','CO2 intensity']*8760, #8760 converts EUR/(tCO2/a) to EUR/(tCO2/h) + capital_cost=costs.at["cement capture","fixed"]*costs.at['gas','CO2 intensity'], efficiency=0.9, - efficiency2=costs.at['gas','CO2 intensity']*(1-options["ccs_fraction"]), - efficiency3=costs.at['gas','CO2 intensity']*options["ccs_fraction"], - lifetime=costs.at['industry CCS','lifetime']) + efficiency2=costs.at['gas','CO2 intensity']*(1-costs.at["cement capture","capture_rate"]), + efficiency3=costs.at['gas','CO2 intensity']**costs.at["cement capture","capture_rate"], + lifetime=costs.at['cement capture','lifetime']) network.madd("Load", @@ -1573,12 +1667,18 @@ def add_industry(network): carrier="low-temperature heat for industry", p_set=industrial_demand.loc[nodes,"low-temperature heat"]/8760.) + #remove today's industrial electricity demand by scaling down total electricity demand + for ct in n.buses.country.unique(): + loads = n.loads.index[(n.loads.index.str[:2] == ct) & (n.loads.carrier == "electricity")] + factor = 1 - industrial_demand.loc[loads,"current electricity"].sum()/n.loads_t.p_set[loads].sum().sum() + n.loads_t.p_set[loads] *= factor + network.madd("Load", nodes, - suffix=" industry new electricity", + suffix=" industry electricity", bus=nodes, - carrier="industry new electricity", - p_set = (industrial_demand.loc[nodes,"electricity"]-industrial_demand.loc[nodes,"current electricity"])/8760.) + carrier="industry electricity", + p_set=industrial_demand.loc[nodes,"electricity"]/8760.) network.madd("Bus", ["process emissions"], @@ -1601,18 +1701,18 @@ def add_industry(network): p_nom_extendable=True, efficiency=1.) - #assume enough local waste heat for CCS + #assume enough local waste heat for CC network.madd("Link", - ["process emissions CCS"], + ["process emissions CC"], bus0="process emissions", bus1="co2 atmosphere", bus2="co2 stored", - carrier="process emissions CCS", + carrier="process emissions CC", p_nom_extendable=True, - capital_cost=costs.at["industry CCS","fixed"]*8760, #8760 converts EUR/(tCO2/a) to EUR/(tCO2/h) - efficiency=(1-options["ccs_fraction"]), - efficiency2=options["ccs_fraction"], - lifetime=costs.at['industry CCS','lifetime']) + capital_cost=costs.at["cement capture","fixed"], + efficiency=(1-costs.at["cement capture","capture_rate"]), + efficiency2=costs.at["cement capture","capture_rate"], + lifetime=costs.at['cement capture','lifetime']) @@ -1667,41 +1767,66 @@ def remove_h2_network(n): carrier="H2 Store", capital_cost=h2_capital_cost) +def get_parameter(item): + """Check whether it depends on investment year""" + if type(item) is dict: + return item[investment_year] + else: + return item +#%% if __name__ == "__main__": # Detect running outside of snakemake and mock snakemake for testing if 'snakemake' not in globals(): from vresutils.snakemake import MockSnakemake snakemake = MockSnakemake( wildcards=dict(network='elec', simpl='', clusters='37', lv='1.0', - opts='', planning_horizons='2020', - co2_budget_name='go', - sector_opts='Co2L0-168H-T-H-B-I-solar3-dist1'), - input=dict(network='pypsa-eur/networks/{network}_s{simpl}_{clusters}_ec_lv{lv}_{opts}.nc', - timezone_mappings='pypsa-eur-sec/data/timezone_mappings.csv', - co2_budget='pypsa-eur-sec/data/co2_budget.csv', - clustered_pop_layout='pypsa-eur-sec/resources/pop_layout_{network}_s{simpl}_{clusters}.csv', - costs='pypsa-eur-sec/data/costs/costs_{planning_horizons}.csv', - profile_offwind_ac='pypsa-eur/resources/profile_offwind-ac.nc', - profile_offwind_dc='pypsa-eur/resources/profile_offwind-dc.nc', - clustermaps="pypsa-eur/resources/clustermaps_{network}_s{simpl}_{clusters}.h5", - cop_air_total='pypsa-eur-sec/resources/cop_air_total_{network}_s{simpl}_{clusters}.nc', - cop_soil_total='pypsa-eur-sec/resources/cop_soil_total_{network}_s{simpl}_{clusters}.nc', - solar_thermal_total='pypsa-eur-sec/resources/solar_thermal_total_{network}_s{simpl}_{clusters}.nc', - energy_totals_name='pypsa-eur-sec/data/energy_totals.csv', - heat_demand_total='pypsa-eur-sec/resources/heat_demand_total_{network}_s{simpl}_{clusters}.nc', - heat_profile='pypsa-eur-sec/data/heat_load_profile_BDEW.csv', - transport_name='pypsa-eur-sec/data/transport_data.csv', - temp_air_total='pypsa-eur-sec/resources/temp_air_total_{network}_s{simpl}_{clusters}.nc', - co2_totals_name='pypsa-eur-sec/data/co2_totals.csv', - biomass_potentials='pypsa-eur-sec/data/biomass_potentials.csv', - industrial_demand='pypsa-eur-sec/resources/industrial_demand_{network}_s{simpl}_{clusters}.csv',), + opts='', planning_horizons='2030', co2_budget_name="go", + sector_opts='Co2L0-120H-T-H-B-I-solar3-dist1'), + input=dict( network='../pypsa-eur/networks/{network}_s{simpl}_{clusters}_ec_lv{lv}_{opts}.nc', + energy_totals_name='resources/energy_totals.csv', + co2_totals_name='resources/co2_totals.csv', + transport_name='resources/transport_data.csv', + traffic_data = "data/emobility/", + biomass_potentials='resources/biomass_potentials.csv', + timezone_mappings='data/timezone_mappings.csv', + heat_profile="data/heat_load_profile_BDEW.csv", + costs="../technology-data/outputs/costs_{planning_horizons}.csv", + h2_cavern = "data/hydrogen_salt_cavern_potentials.csv", + profile_offwind_ac="../pypsa-eur/resources/profile_offwind-ac.nc", + profile_offwind_dc="../pypsa-eur/resources/profile_offwind-dc.nc", + busmap_s="../pypsa-eur/resources/busmap_{network}_s{simpl}.csv", + busmap="../pypsa-eur/resources/busmap_{network}_s{simpl}_{clusters}.csv", + clustered_pop_layout="resources/pop_layout_{network}_s{simpl}_{clusters}.csv", + simplified_pop_layout="resources/pop_layout_{network}_s{simpl}.csv", + industrial_demand="resources/industrial_energy_demand_{network}_s{simpl}_{clusters}.csv", + heat_demand_urban="resources/heat_demand_urban_{network}_s{simpl}_{clusters}.nc", + heat_demand_rural="resources/heat_demand_rural_{network}_s{simpl}_{clusters}.nc", + heat_demand_total="resources/heat_demand_total_{network}_s{simpl}_{clusters}.nc", + temp_soil_total="resources/temp_soil_total_{network}_s{simpl}_{clusters}.nc", + temp_soil_rural="resources/temp_soil_rural_{network}_s{simpl}_{clusters}.nc", + temp_soil_urban="resources/temp_soil_urban_{network}_s{simpl}_{clusters}.nc", + temp_air_total="resources/temp_air_total_{network}_s{simpl}_{clusters}.nc", + temp_air_rural="resources/temp_air_rural_{network}_s{simpl}_{clusters}.nc", + temp_air_urban="resources/temp_air_urban_{network}_s{simpl}_{clusters}.nc", + cop_soil_total="resources/cop_soil_total_{network}_s{simpl}_{clusters}.nc", + cop_soil_rural="resources/cop_soil_rural_{network}_s{simpl}_{clusters}.nc", + cop_soil_urban="resources/cop_soil_urban_{network}_s{simpl}_{clusters}.nc", + cop_air_total="resources/cop_air_total_{network}_s{simpl}_{clusters}.nc", + cop_air_rural="resources/cop_air_rural_{network}_s{simpl}_{clusters}.nc", + cop_air_urban="resources/cop_air_urban_{network}_s{simpl}_{clusters}.nc", + solar_thermal_total="resources/solar_thermal_total_{network}_s{simpl}_{clusters}.nc", + solar_thermal_urban="resources/solar_thermal_urban_{network}_s{simpl}_{clusters}.nc", + solar_thermal_rural="resources/solar_thermal_rural_{network}_s{simpl}_{clusters}.nc", + retro_cost_energy = "resources/retro_cost_{network}_s{simpl}_{clusters}.csv", + floor_area = "resources/floor_area_{network}_s{simpl}_{clusters}.csv" + ), output=['pypsa-eur-sec/results/test/prenetworks/{network}_s{simpl}_{clusters}_lv{lv}__{sector_opts}_{co2_budget_name}_{planning_horizons}.nc'] ) import yaml - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) logging.basicConfig(level=snakemake.config['logging_level']) @@ -1712,6 +1837,8 @@ if __name__ == "__main__": opts = snakemake.wildcards.sector_opts.split('-') + investment_year=int(snakemake.wildcards.planning_horizons[-4:]) + n = pypsa.Network(snakemake.input.network, override_component_attrs=override_component_attrs) @@ -1723,10 +1850,13 @@ if __name__ == "__main__": pop_layout["ct_total"] = pop_layout["ct"].map(ct_total.get) pop_layout["fraction"] = pop_layout["total"]/pop_layout["ct_total"] + simplified_pop_layout = pd.read_csv(snakemake.input.simplified_pop_layout,index_col=0) + costs = prepare_costs(snakemake.input.costs, snakemake.config['costs']['USD2013_to_EUR2013'], snakemake.config['costs']['discountrate'], - Nyears) + Nyears, + snakemake.config['costs']['lifetime']) remove_elec_base_techs(n) @@ -1747,11 +1877,6 @@ if __name__ == "__main__": add_storage(n) for o in opts: - if "space" in o: - limit = o[o.find("space")+5:] - limit = float(limit.replace("p",".").replace("m","-")) - print(o,limit) - options['space_heating_fraction'] = limit if o[:4] == "wave": wave_cost_factor = float(o[4:].replace("p",".").replace("m","-")) print("Including wave generators with cost factor of", wave_cost_factor) @@ -1766,7 +1891,7 @@ if __name__ == "__main__": options["central"] = False if "T" in opts: - add_transport(n) + add_land_transport(n) if "H" in opts: add_heat(n) @@ -1780,6 +1905,9 @@ if __name__ == "__main__": if "I" in opts and "H" in opts: add_waste_heat(n) + if options['dac']: + add_dac(n) + if "decentral" in opts: decentral(n) @@ -1794,35 +1922,40 @@ if __name__ == "__main__": else: logger.info("No resampling") + #process CO2 limit + limit = get_parameter(snakemake.config["co2_budget"]) + print("CO2 limit set to",limit) - if snakemake.config["foresight"] == 'myopic': - co2_limits=pd.read_csv(snakemake.input.co2_budget, index_col=0) - year=snakemake.wildcards.planning_horizons[-4:] - limit=co2_limits.loc[int(year),snakemake.config["scenario"]["co2_budget_name"]] - add_co2limit(n, Nyears, limit) - else: - for o in opts: - if "Co2L" in o: - limit = o[o.find("Co2L")+4:] - print(o,limit) - if limit == "": - limit = snakemake.config['co2_reduction'] - else: - limit = float(limit.replace("p",".").replace("m","-")) - add_co2limit(n, Nyears, limit) - # add_emission_prices(n, exclude_co2=True) + for o in opts: + if "Co2L" in o: + limit = o[o.find("Co2L")+4:] + limit = float(limit.replace("p",".").replace("m","-")) + print("overriding CO2 limit with scenario limit",limit) - # if 'Ep' in opts: - # add_emission_prices(n) + print("adding CO2 budget limit as per unit of 1990 levels of",limit) + add_co2limit(n, Nyears, limit) + + for o in opts: for tech in ["solar","onwind","offwind"]: if tech in o: limit = o[o.find(tech)+len(tech):] limit = float(limit.replace("p",".").replace("m","-")) + print("changing potential for",tech,"by factor",limit) restrict_technology_potential(n,tech,limit) + if o[:10] == 'linemaxext': + maxext = float(o[10:])*1e3 + print("limiting new HVAC and HVDC extensions to",maxext,"MW") + n.lines['s_nom_max'] = n.lines['s_nom'] + maxext + hvdc = n.links.index[n.links.carrier == 'DC'] + n.links.loc[hvdc,'p_nom_max'] = n.links.loc[hvdc,'p_nom'] + maxext + + if snakemake.config["sector"]['electricity_distribution_grid']: insert_electricity_distribution_grid(n) + if snakemake.config["sector"]['gas_distribution_grid']: + insert_gas_distribution_costs(n) if snakemake.config["sector"]['electricity_grid_connection']: add_electricity_grid_connection(n) diff --git a/scripts/solve_network.py b/scripts/solve_network.py index 0e2eb17c..795c3327 100644 --- a/scripts/solve_network.py +++ b/scripts/solve_network.py @@ -28,10 +28,13 @@ from vresutils.benchmark import memory_logger override_component_attrs = pypsa.descriptors.Dict({k : v.copy() for k,v in pypsa.components.component_attrs.items()}) override_component_attrs["Link"].loc["bus2"] = ["string",np.nan,np.nan,"2nd bus","Input (optional)"] override_component_attrs["Link"].loc["bus3"] = ["string",np.nan,np.nan,"3rd bus","Input (optional)"] +override_component_attrs["Link"].loc["bus4"] = ["string",np.nan,np.nan,"4th bus","Input (optional)"] override_component_attrs["Link"].loc["efficiency2"] = ["static or series","per unit",1.,"2nd bus efficiency","Input (optional)"] override_component_attrs["Link"].loc["efficiency3"] = ["static or series","per unit",1.,"3rd bus efficiency","Input (optional)"] +override_component_attrs["Link"].loc["efficiency4"] = ["static or series","per unit",1.,"4th bus efficiency","Input (optional)"] override_component_attrs["Link"].loc["p2"] = ["series","MW",0.,"2nd bus output","Output"] override_component_attrs["Link"].loc["p3"] = ["series","MW",0.,"3rd bus output","Output"] +override_component_attrs["Link"].loc["p4"] = ["series","MW",0.,"4th bus output","Output"] @@ -351,7 +354,7 @@ def solve_network(n, config=None, solver_log=None, opts=None): # fn = os.path.basename(snakemake.output[0]) # n.export_to_netcdf('/home/vres/data/jonas/playground/pypsa-eur/' + fn) - status, termination_condition = run_lopf(n, fix_ext_lines=True) + status, termination_condition = run_lopf(n, allow_warning_status=True, fix_ext_lines=True) # Drop zero lines from network # zero_lines_i = n.lines.index[(n.lines.s_nom_opt == 0.) & n.lines.s_nom_extendable] @@ -378,8 +381,8 @@ if __name__ == "__main__": python="logs/{network}_s{simpl}_{clusters}_lv{lv}_{sector_opts}_{co2_budget_name}_{planning_horizons}_python-test.log") ) import yaml - with open('config.yaml') as f: - snakemake.config = yaml.load(f) + with open('config.yaml', encoding='utf8') as f: + snakemake.config = yaml.safe_load(f) tmpdir = snakemake.config['solving'].get('tmpdir') if tmpdir is not None: patch_pyomo_tmpdir(tmpdir)